注释这段代码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-30 10:04:46 浏览: 129
Python之Matplotlib文字与注释的使用方法
# 画出点 (0,0), (1,4), (2,8), (3,12) 的连线图
plt.plot([0, 1, 2, 3], [0, 4, 8, 12])
# 设置 x 轴的范围为 0 到 3,y 轴的范围为 0 到 15
plt.xlim(0, 3)
plt.ylim(0, 15)
# 设置 x 轴和 y 轴的标签
plt.xlabel("I")
plt.ylabel("U")
# 获取当前图形的坐标轴,并将顶部和右侧的边框隐藏
ax = plt.gca()
ax.spines['top'].set_visible(False)
ax.spines['right'].set_visible(False)
# 显示图形
plt.show()
阅读全文