📌  相关文章
📜  matplotlib 删除刻度和线条 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:34.800000             🧑  作者: Mango

代码示例1
fig = plt.figure()
ax = fig.add_subplot(111)
ax.plot([1],[1])
ax.tick_params(axis=u'both', which=u'both',length=0)
plt.show()