在matplotlib中更改虚线中的破折号间距[重复]
Posted
技术标签:
【中文标题】在matplotlib中更改虚线中的破折号间距[重复]【英文标题】:Change spacing of dashes in dashed line in matplotlib [duplicate] 【发布时间】:2016-05-08 01:12:51 【问题描述】:在 Python 中,使用 matplotlib,有没有办法改变不同线条样式的虚线距离,例如,使用以下命令:
plt.plot(x,y,linestyle='--')
【问题讨论】:
不会使用自定义线型吗?见here 【参考方案1】:您可以使用 plot 命令中的dashes=(length, interval space)
参数直接指定破折号的长度/空间。
import matplotlib.pyplot as plt
fig,ax = plt.subplots()
ax.plot([0, 1], [0, 1], linestyle='--', dashes=(5, 1)) #length of 5, space of 1
ax.plot([0, 1], [0, 2], linestyle='--', dashes=(5, 5)) #length of 5, space of 5
ax.plot([0, 1], [0, 3], linestyle='--', dashes=(5, 10)) #length of 5, space of 10
ax.plot([0, 1], [0, 4], linestyle='--', dashes=(5, 20)) #length of 5, space of 20
【讨论】:
不知道这个破折号的东西,很方便!以上是关于在matplotlib中更改虚线中的破折号间距[重复]的主要内容,如果未能解决你的问题,请参考以下文章
如何从 Apple 键盘听写中删除 TextView 中的蓝色虚线建议下划线?