horizontal grid lines in matplotlib
February 1st, 2012 by Lawrence David
to create only horizontal grid lines in matplotlib:
fig, ax = pylab.subplots(1)
ax.xaxis.grid(True)
pylab.grid()
February 1st, 2012 by Lawrence David
to create only horizontal grid lines in matplotlib:
fig, ax = pylab.subplots(1)
ax.xaxis.grid(True)
pylab.grid()