matplotlib plot two different y axis code example
Example 1: pyplot second y axis
import numpy as np
import matplotlib.pyplot as plt
t = np.arange(0.01, 10.0, 0.01)
data1 = np.exp(t)
data2 = np.sin(2 * np.pi * t)
fig, ax1 = plt.subplots()
color = 'tab:red'
ax1.set_xlabel('time (s)')
ax1.set_ylabel('exp', color=color)
ax1.plot(t, data1, color=color)
ax1.tick_params(axis='y', labelcolor=color)
ax2 = ax1.twinx()
color = 'tab:blue'
ax2.set_ylabel('sin', color=color)
ax2.plot(t, data2, color=color)
ax2.tick_params(axis='y', labelcolor=color)
fig.tight_layout()
plt.show()
Example 2: twin axis python
import numpy as np
import matplotlib.pyplot as plt
ax1=plt.subplot(111)
ax1.plot(np.arange(0,10),np.arange(0,10))
ax2=ax1.twinx()
ax2.plot(np.arange(10,20),np.arange(100,110))