优化这段代码plt. plot([0, 1,2,3], [0, 4,8, 12]) plt. xlim(0, 3) plt. ylim(0, 15) plt. xlabel("I") plt. ylabel("U") ax = plt. gca() ax. spines['top' ]. set_visible (False) ax. spines['right' ]. set_visible(False) plt. show()
时间: 2023-05-24 10:01:39 浏览: 162
matplotlib 曲线图 和 折线图 plt.plot()实例
5星 · 资源好评率100%
这段代码可以进行一些改进,例如可以将 x 和 y 轴的范围、标签、颜色等进行调整,还可以添加图例、标题等元素。下面是一个改进后的示例:
import matplotlib.pyplot as plt
x = [0, 1, 2, 3]
y = [0, 4, 8, 12]
plt.plot(x, y, label='line 1', color='red', linewidth=2)
plt.xlim(0, 4)
plt.ylim(0, 15)
plt.xlabel("I")
plt.ylabel("U")
plt.title("Voltage vs Current")
plt.legend()
plt.show()
这段代码添加了图例和标题,将 x 轴范围调整为 0 到 4,线条颜色为红色,线宽为 2。结果如下所示:
![image.png](https://cdn.nlark.com/yuque/0/2021/png/11032751/1620307164477-5c5d5def-8c06-4f19-baf2-c2a04e1a4a83.png)
阅读全文