matplotlib折线图怎么让折线的首尾不连接呢
时间: 2023-06-03 22:02:58 浏览: 760
python matplotlib折线图样式实现过程
5星 · 资源好评率100%
你可以在plot()函数中设置参数"solid_capstyle"为"butt"来使折线的首尾不连接,示例代码如下:
```
import matplotlib.pyplot as plt
x = [1, 2, 3, 4]
y = [1, 4, 9, 16]
fig, ax = plt.subplots()
ax.plot(x, y, solid_capstyle='butt')
plt.show()
```
阅读全文