##^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^Lance Simms, Stanford University 2009
#plot_noticklabels.py
#
#PURPOSE:
#  To make a plot without ticklabels on one axis
from pylab import *
import matplotlib.pylab as mplot

a=arange(100)

Fig=mplot.figure(0)
mplot.clf()
Ax = Fig.add_axes([0.100,0.100,0.85,0.85])
mplot.plot(a, 2*a)

#REMOVE TICK LABELS
xt = Ax.get_xticklabels()
for i in xt:
  i.set_visible(False)
draw()

yt = Ax.get_yticklabels()
for i in yt:
  i.set_fontsize(40)
draw()

