简体   繁体   中英

matplotlib diagrams with 2 y-axis

In matplolib for a time line diagram can I set to y-axis different values on the left and make another y-axis to the right with other scale?

I am using this:

import matplotlib.pyplot as plt 

plt.axis('normal')
plt.axvspan(76, 76, facecolor='g', alpha=1)
plt.plot(ts, 'b',linewidth=1.5)
plt.ylabel("name",fontsize=14,color='blue')
plt.ylim(ymax=100)
plt.xlim(xmax=100)
plt.grid(True)
plt.title("name", fontsize=20,color='black')
plt.xlabel('xlabel', fontsize=14, color='b')
plt.show()

Can I give 2 y-axis in this plot?

In span selector:

 plt.axvspan(76, 76, facecolor='g', alpha=1)

I want to right text to characterize this span for example 'This is span selector' how can I make it?

You want twinx example . The gist if it is:

ax = plt.gca()
ax2 = ax.twinx()

You can then plot to the first axes with

ax.plot(...)

and the second with

ax2.plot(...)

In your case (I think) you want:

import matplotlib.pyplot as plt 

ax = plt.gca()
ax2 = ax.twinx()
plt.axis('normal')
ax2.axvspan(74, 76, facecolor='g', alpha=1)
ax.plot(range(50), 'b',linewidth=1.5)
ax.set_ylabel("name",fontsize=14,color='blue')
ax2.set_ylabel("name2",fontsize=14,color='blue')
ax.set_ylim(ymax=100)
ax.set_xlim(xmax=100)
ax.grid(True)
plt.title("name", fontsize=20,color='black')
ax.set_xlabel('xlabel', fontsize=14, color='b')
plt.show()

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM