I tried plotting individual axes on my system with the basic code
import matplotlib.pyplot as plt
import numpy as np
x=[1,2,3,4,5]
y=[2,4,6,8,10]
fig,ax=plt.subplots(2)
ax[0].plot(x,y)
ax[1].plot(x,[2*i for i in y])
plt.show()
Is there a way to display individual axes from a figure while running matplotlib in a python interpreter from terminal?