Hi
Hope this is the right place to post a request for enhancement.
I often create a bunch of relatively basic plots using matplotlib and
the commands to set the labels and limits take up more space than the
actual plotting commands (figure, plot, show), so I was wondering if
there is a shorter wa
Hi
> Just to elaborate on what Ben said, all matplotlib artists have a "set"
> method. E.g.:
>
> ax.set(xlim=[min, max], ylim=[min, max], xlabel='blah')
>
> "plt.setp" basically just calls "set", but it will also operate on
> sequences of artists. Therefore you can do things like:
great! e