this information can be used to speed up some other functions as well.
Ray Speth
--
___
Matplotlib-devel mailing list
Matplotlib-devel@lists.sourceforge.net
exists in version 0.99.1.
Thanks,
Ray Speth
#!/usr/bin/python
import matplotlib.pyplot as plt
import numpy as np
f = plt.figure()
f.set_dpi(200)
x = np.arange(10)
h = plt.scatter(x,-x)
g = plt.plot(x,x,'ro-')
L = plt.legend([h,g],['scatter','plot'])
#f.savefig(
strings or object handles.
Also, the "loc" argument is made optional, and defaults to the upper
right, same as Axes.legend.
I hope the attached patch is suitable for inclusion. I have also
attached a test script showing each of the call signatures.
Thanks,
Ray Speth
lib/matplot