Hi!
0x9c5a8ac>] >>> set(gca(), xticklabels=) Traceback (most
recent call last):
File "<stdin>", line 1, in <module>
TypeError: set() does not take keyword argumentsCan 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,