标签: python-3.x matplotlib
我了解使用matplotlib。
matplotlib
plt.xlabel('x-axis') plt.yablel('y-axis')
可以在python中用于命名轴和标题,等等,只是在寻找病房来命名其他轴。
答案 0 :(得分:2)
import matplotlib.pyplot as plt x = [1,2,3] y = [3,4,6] p = plt.plot(x,y) plt.twinx().set_ylabel('right Y lable')