Re: [Matplotlib-users] jitter in matplotlib?

2011-02-24 Thread gary ruben
I haven't seen this done before so I don't know if there's a standard way. The idea seems to be to take some points which are real data, create a random variable for each point with the points' position as the mean, then choose some number of points from each distribution to create some new points

Re: [Matplotlib-users] Matplotlib Widget and QT Issue

2011-02-24 Thread Nadezhda Dencheva
Jason, Try adding a pyqt property 'facecolor' to your widget. (This way you can set it also through the designer.) Add something like this to the widget's __init__ method: figFacecolor = QtCore.pyqtProperty(str, getfigfacecolor, setfigfacecolor,

Re: [Matplotlib-users] HTML Link in Text

2011-02-24 Thread Benjamin Root
On Wed, Feb 23, 2011 at 10:52 PM, Mark Janikas mjani...@esri.com wrote: Hello All, Is there a way to add HTML links into output graphics? In short, I would like to use something like the PLT.text command and have it link to an html page. The url arg doesn’t seem to be what I am looking

Re: [Matplotlib-users] figure window coordinates

2011-02-24 Thread Benjamin Root
On Wed, Feb 23, 2011 at 6:56 PM, Jack Sankey jack.san...@gmail.com wrote: Hi everyone! Is there any backend-independent way to get and set the figure window coordinates and sizes (i.e. in pixels)? Currently when I make new plots they appear in random locations as determined by my operating

Re: [Matplotlib-users] Histogram with single series - colour coding different ranges?

2011-02-24 Thread Goyo
2011/2/22 Benjamin Root ben.r...@ou.edu: Admittedly, this isn't using matplotlib's hist() function because it only allows for one color per dataset.  However, you can use numpy's histogram function to get the bins and counts yourself, and then use bar() to make the bars.  bar() will allow you

[Matplotlib-users] 64bit installer

2011-02-24 Thread Tommy Grav
Is there a 64bit installer of matplotlib for mac os x available? Cheers Tommy -- Free Software Download: Index, Search Analyze Logs and other IT data in Real-Time with Splunk. Collect, index and harness all the fast

Re: [Matplotlib-users] faq: reducing figure.figsize cuts off labels and tick marks

2011-02-24 Thread Darren Dale
On Tue, Feb 22, 2011 at 4:23 AM, Daniel Mader danielstefanma...@googlemail.com wrote: Hi, there has been a similar question recently but I couldn't figure out if or how this is solved: I'd like to reduce the figure size so that I can add it to a LaTeX document without scaling (PDF output

Re: [Matplotlib-users] Qt integration and sip API

2011-02-24 Thread Michele Mattioni
Following up, after a bit of research... It seems it's alla about QString (which is gone in api 2) it is suggested to convert the QString into a unicode python2 string http://wiki.python.org/moin/PortingPythonToPy3k/PyQt4 Do you think could be the way to go for the qt backend? Cheers, Michele.