[Matplotlib-users] input text and/or numbers on mpl figure

2007-05-25 Thread Matthias Michler
Hello everybody, I tried useing matplotlib as a GUI for my programs. I'd like to incorporate things like Buttons, Sliders, RadioButtons and so on from matplotlib.widgets, but missed a prompt (i.e. a field to input text and/or numbers). My question is: Is there already a text-input-field in one

Re: [Matplotlib-users] input text and/or numbers on mpl figure

2007-05-25 Thread Christopher Barker
Matthias Michler wrote: > I tried useing matplotlib as a GUI for my programs. I'd like to incorporate > things like Buttons, Sliders, RadioButtons and so on from > matplotlib.widgets, but missed a prompt (i.e. a field to input text and/or > numbers). I'm going to advise you to not try to do tha

[Matplotlib-users] figure dpi output problem

2007-05-25 Thread jdawe
I'm trying to get matplotlib to make a 600x300 png, but matplotlib won't let me; it keeps making a 612x312 png instead. Here's a sample script that has the problem on my system: figure(figsize=(6., 3.)) plot(arange(10)) savefig('test.png', dpi=100.) If I set dpi to 50., it makes a 312x162 png.