Hi! 
> 0x9c5a8ac>]  >>> set(gca(), xticklabels=[]) Traceback (most 
> recent call last):
>   File "<stdin>", line 1, in <module>
> TypeError: set() does not take keyword arguments
> 
> Can somebody help me understand what goes wrong here?

Python (since the docs were written) now has a built-in type called
'set'.  This caused a namespace conflict with pylab's "set" command, so
the pylab "set" command became "setp" for "set property".

So, change the line to:

>>> setp(gca(), xticklabels=[])

Cheers,
A>



-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to