On Sun, Apr 27, 2008 at 10:09 PM, samwo <su...@gm...> wrote:
>
> Hi.
>
> I run these codes in ipython command line interface.
>
> from pylab import *
> subplot(211)
> plot([1,2,3],[1,2,3])
> set(gca(), xtickslabel = [])
"set" is a python built-in (the mathematical set) and matplotlib now
uses "setp" (for set property) instead.
JDH
|