在python中命名轴

时间:2018-07-19 08:38:08

标签: python-3.x matplotlib

我了解使用matplotlib

plt.xlabel('x-axis')

plt.yablel('y-axis')

可以在python中用于命名轴和标题,等等,只是在寻找病房来命名其他轴。

enter image description here

1 个答案:

答案 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')

output