hide tick lines in matplotlib
February 1st, 2012 by Lawrence David
to hide the tick lines in matplotlib:
xaxis = ax.xaxis
xaxis.set_ticks_position(‘none’)
February 1st, 2012 by Lawrence David
to hide the tick lines in matplotlib:
xaxis = ax.xaxis
xaxis.set_ticks_position(‘none’)
Thanks much!, just what I needed. Trolling through the docs for matplotlib can take forever…