I would like to create an arbitrary number of plots in a single column using the same x-axis.
Here's an example:
import numpy as np
from matplotlib import pyplot as plt
N=1000
x = np.linspace(-.5,1.5,num=N)
xshift = x-0.5
Bz = 30*np.exp(-xshift**8/0.00125)*np.sin(xshift*2.*np.pi)
Np = 30*np.exp(-xshift**10/0.00125)+5
Vx = 200*np.exp(-xshift**10/0.00125)+400
fig = plt.figure()
#list of tuples of the form `(data, label)`
data_list = [(Bz,"B_z"),(Vx,"V_x"),(Np,"N_p")]
for i,(data,lab) in enumerate(data_list,1):
ax = fig.add_subplot(len(data_list),1,i)
ax.set_ylabel("$\mathrm{%s}$"%lab)
ax.get_xaxis().set_ticklabels([])
ax.plot(x,data)
else:
#Reset default tick labels here on ax
pass
plt.show()
For this plot, it would be logical for the last plot to display the xtic labels whereas all the other plots have that information left off. I could pop the last item off the data_list and spell it out explicitly, but that seems hacky to me. Is there an elegant way to tell a matplotlib Axes that it should restore the default xticlabel settings?
(some documentation)