plt怎么通过linestyle参数分别设置实线、虚线、点线、点划线
时间: 2023-04-05 19:00:34 浏览: 355
设置线条样式的参数
您好,可以通过以下方式设置不同的线型:
实线:linestyle='solid' 或 linestyle='-'
虚线:linestyle='dashed' 或 linestyle='--'
点线:linestyle='dotted' 或 linestyle=':'
点划线:linestyle='dashdot' 或 linestyle='-.'
例如:
plt.plot(x, y, linestyle='solid') # 实线
plt.plot(x, y, linestyle='dashed') # 虚线
plt.plot(x, y, linestyle='dotted') # 点线
plt.plot(x, y, linestyle='dashdot') # 点划线
希望能对您有所帮助。
阅读全文