Closed brandon-rhodes closed 6 years ago
This lets users say ax = ...plot() and then add another line to the same plot by adding a keyword argument ax=ax to the next plot call.
ax = ...plot()
ax=ax
Thanks! :)
Thanks for contributing!
This lets users say
ax = ...plot()
and then add another line to the same plot by adding a keyword argumentax=ax
to the next plot call.