473,394 Members | 2,071 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

matplotlib basic question

Hi,

I am exploring the possibility of using python as a replacement of
MATLAB when I leave school. So, I've been playing with matplotlib and
have run into some weird behavior after recently installing python
2.5.1 and matplotlib 0.90 on my Windows XP machine. Here's an example
of what I see:
>>>from matplotlib.pylab import *
x=arange(-2*pi,2*pi,pi/24)
y=sin(x)
plot(x,y)
[<matplotlib.lines.Line2D instance at 0x017C38C8>]
>>show()

So, first off, what's up with the [<matplotlib.lines.Line2D instance
at 0x017C38C8>] line that shows up after my plot command? And second,
when I call show(), a new figure pops up with my sin wave -- seems all
right, yes? But I'm not given another >>prompt in IDLE until or
unless I close the figure that popped up with the show() call.

So, after closing the figure I type this:
>>>show()
plot(x,y)
and this time another figure pops up with my sine wave again and I get
a prompt as well. But now, the figure window is completely
unresponsive -- I can't even close it without getting the "your
program is not repsonding" business. What am I missing? This
behavior so far seems pretty unintuitive.

Any clarification is appreciated!

trevis

Apr 19 '07 #1
12 3404
So, first off, what's up with the [<matplotlib.lines.Line2D instance
at 0x017C38C8>] line that shows up after my plot command? And second,
when I call show(), a new figure pops up with my sin wave -- seems all
right, yes? But I'm not given another >>prompt in IDLE until or
unless I close the figure that popped up with the show() call.
This may not be strictly correct but thats a reference to the plot
instance which is subsequently passed to show().
If you don't want to see it put a semicolon at the end of your command
eg. plot(range(5));

The issue with IDLE is to due with lack of connection between the
python interpreter event loop and the event loop of matplotlib (I
think). For me the solution was to install the ipython shell (http://
ipython.scipy.org/moin/). If you run ipython with the -pylab flag then
you can matplotlib interactively. For example

plot(range(5),'bo')
show()
clf()
plot([1,2,3,4,5],range(0,10,2),'r-')
(no need for another show() command since the graphics display is
already visible ... unless of course I deleted it in between plot
commands)

hth
Apr 19 '07 #2
On 19 Apr 2007 16:13:43 -0700, cf********@gmail.com
<cf********@gmail.comwrote:
>
So, first off, what's up with the [<matplotlib.lines.Line2D instance
at 0x017C38C8>] line that shows up after my plot command? And second,
when I call show(), a new figure pops up with my sin wave -- seems all
right, yes? But I'm not given another >>prompt in IDLE until or
unless I close the figure that popped up with the show() call.
This may not be strictly correct but thats a reference to the plot
instance which is subsequently passed to show().
If you don't want to see it put a semicolon at the end of your command
eg. plot(range(5));
My understanding is that the semicolon trick is specific to IPython,
and does not work in IDLE. I don't know about in other environments.
You can just assign the list of returned plot objects to a variable to
make it invisible at the command line although these return values
(like all return values) are not "shown in the command window" (i.e.
passed to stdout) if they are returned from calls made in a script.
The issue with IDLE is to due with lack of connection between the
python interpreter event loop and the event loop of matplotlib (I
think). For me the solution was to install the ipython shell (http://
ipython.scipy.org/moin/). If you run ipython with the -pylab flag then
you can matplotlib interactively. For example

plot(range(5),'bo')
show()
clf()
plot([1,2,3,4,5],range(0,10,2),'r-')
(no need for another show() command since the graphics display is
already visible ... unless of course I deleted it in between plot
commands)
The OP appears to be using IDLE, for which the things to try are:

In site-packages/matplotlib/backends/backend_tkagg.py uncomment the
line #os.environ['PYTHONINSPECT'] = '1'

Set interactive=True in share/matplotlib/.matplotlibrc

Start IDLE with the -n flag

In site-packages/matplotlib/backends/backend_tkagg.py comment out the line

Tk.mainloop()

in the function "show"

-Rob
Apr 20 '07 #3
orangeDinosaur wrote:
Hi,

I am exploring the possibility of using python as a replacement of
MATLAB when I leave school. So, I've been playing with matplotlib and
have run into some weird behavior after recently installing python
2.5.1 and matplotlib 0.90 on my Windows XP machine. Here's an example
of what I see:
>>from matplotlib.pylab import *
x=arange(-2*pi,2*pi,pi/24)
y=sin(x)
plot(x,y)
[<matplotlib.lines.Line2D instance at 0x017C38C8>]
>>>show()


So, first off, what's up with the [<matplotlib.lines.Line2D instance
at 0x017C38C8>] line that shows up after my plot command? And second,
when I call show(), a new figure pops up with my sin wave -- seems all
right, yes? But I'm not given another >>prompt in IDLE until or
unless I close the figure that popped up with the show() call.

So, after closing the figure I type this:
>>>show()
plot(x,y)

and this time another figure pops up with my sine wave again and I get
a prompt as well. But now, the figure window is completely
unresponsive -- I can't even close it without getting the "your
program is not repsonding" business. What am I missing? This
behavior so far seems pretty unintuitive.

Any clarification is appreciated!

trevis
Trevis,

You might look at Numpy, which deals with multi-dimensional arrays.

It has a small matrix component and some progress has been made with
MATLAB amenable problems.

Colin W.

Apr 20 '07 #4
orangeDinosaur <tr**********@gmail.comwrites:
[...] But now, the figure window is completely unresponsive -- I
can't even close it without getting the "your program is not
repsonding" business. What am I missing? This behavior so far
seems pretty unintuitive.
The best way out of this is to use IPython. It also needs a backend
which remains responsive, WxAgg works but Tk did not last time I
tried. IPython 0.8.1 is a release candidate which fixes some Windows
issues in 0.8.0. If you want a stable package that has all the parts
present out of the box then look at Enthought.
--
Pete Forman -./\.- Disclaimer: This post is originated
WesternGeco -./\.- by myself and does not represent
pe*********@westerngeco.com -./\.- the opinion of Schlumberger or
http://petef.port5.com -./\.- WesternGeco.
Apr 20 '07 #5
OK, I'll go with the enthought installation. This seems to be the
path of least resistance. For those of you who have been in my
position, is there a reason NOT to go with the enthought installation
and do things piecemeal instead?

thanks,
trevis

On Apr 20, 11:36 am, Pete Forman <pete.for...@westerngeco.comwrote:
orangeDinosaur <trevis.cr...@gmail.comwrites:
[...] But now, the figure window is completely unresponsive -- I
can't even close it without getting the "your program is not
repsonding" business. What am I missing? This behavior so far
seems pretty unintuitive.

The best way out of this is to use IPython. It also needs a backend
which remains responsive, WxAgg works but Tk did not last time I
tried. IPython 0.8.1 is a release candidate which fixes some Windows
issues in 0.8.0. If you want a stable package that has all the parts
present out of the box then look at Enthought.
--
Pete Forman -./\.- Disclaimer: This post is originated
WesternGeco -./\.- by myself and does not represent
pete.for...@westerngeco.com -./\.- the opinion of Schlumberger orhttp://petef.port5.com -./\.- WesternGeco.

Apr 20 '07 #6
orangeDinosaur wrote:
OK, I'll go with the enthought installation. This seems to be the
path of least resistance. For those of you who have been in my
position, is there a reason NOT to go with the enthought installation
and do things piecemeal instead?

thanks,
trevis

On Apr 20, 11:36 am, Pete Forman <pete.for...@westerngeco.comwrote:
>orangeDinosaur <trevis.cr...@gmail.comwrites:
> [...] But now, the figure window is completely unresponsive -- I
can't even close it without getting the "your program is not
repsonding" business. What am I missing? This behavior so far
seems pretty unintuitive.

The best way out of this is to use IPython. It also needs a backend
which remains responsive, WxAgg works but Tk did not last time I
tried. IPython 0.8.1 is a release candidate which fixes some Windows
issues in 0.8.0. If you want a stable package that has all the parts
present out of the box then look at Enthought.
--
Pete Forman -./\.- Disclaimer: This post is originated
WesternGeco -./\.- by myself and does not represent
pete.for...@westerngeco.com -./\.- the opinion of Schlumberger orhttp://petef.port5.com -./\.- WesternGeco.

It's rather heavy and may include stuff you don't need.

I'm not sure that scipy has been updated to Python 2.5

Colin W.

Apr 20 '07 #7
Colin J. Williams wrote:
I'm not sure that scipy has been updated to Python 2.5
? scipy certainly works with 2.5. Are you referring to something else perhaps?

--
Robert Kern

"I have come to believe that the whole world is an enigma, a harmless enigma
that is made terrible by our own mad attempt to interpret it as though it had
an underlying truth."
-- Umberto Eco

Apr 20 '07 #8
On Apr 20, 2007, at 2:44 PM, Robert Kern wrote:
Colin J. Williams wrote:
>I'm not sure that scipy has been updated to Python 2.5

? scipy certainly works with 2.5. Are you referring to something
else perhaps?
A side question: Is there any plans of updating the scipy.org
Superpack bundle
for Mac OS X to work with 2.5?

Cheers
Tommy
Apr 20 '07 #9
Tommy Grav wrote:
On Apr 20, 2007, at 2:44 PM, Robert Kern wrote:
>Colin J. Williams wrote:
>>I'm not sure that scipy has been updated to Python 2.5
? scipy certainly works with 2.5. Are you referring to something
else perhaps?

A side question: Is there any plans of updating the scipy.org
Superpack bundle
for Mac OS X to work with 2.5?
You would have to ask Chris Fonnesbeck. It's not an "official" binary inasmuch
as scipy has official binaries.

--
Robert Kern

"I have come to believe that the whole world is an enigma, a harmless enigma
that is made terrible by our own mad attempt to interpret it as though it had
an underlying truth."
-- Umberto Eco

Apr 20 '07 #10
On Apr 20, 2007, at 3:49 PM, Robert Kern wrote:
Tommy Grav wrote:
>On Apr 20, 2007, at 2:44 PM, Robert Kern wrote:
>>Colin J. Williams wrote:

I'm not sure that scipy has been updated to Python 2.5
? scipy certainly works with 2.5. Are you referring to something
else perhaps?

A side question: Is there any plans of updating the scipy.org
Superpack bundle
for Mac OS X to work with 2.5?

You would have to ask Chris Fonnesbeck. It's not an "official"
binary inasmuch
as scipy has official binaries.
Okidoki. This is the last reason for me not upgrading to 2.5 as I
have a hard
time compiling things from scratch :)

Cheers
Tommy
Apr 20 '07 #11
Robert Kern <ro*********@gmail.comwrites:
Colin J. Williams wrote:
>I'm not sure that scipy has been updated to Python 2.5

? scipy certainly works with 2.5. Are you referring to something
else perhaps?
Yes, the Python Enthought Edition was being discussed and it is
currently based on Python 2.4.3.

http://code.enthought.com/enthon/
--
Pete Forman -./\.- Disclaimer: This post is originated
WesternGeco -./\.- by myself and does not represent
pe*********@westerngeco.com -./\.- the opinion of Schlumberger or
http://petef.port5.com -./\.- WesternGeco.
Apr 23 '07 #12
Pete Forman wrote:
Robert Kern <ro*********@gmail.comwrites:
Colin J. Williams wrote:
>>I'm not sure that scipy has been updated to Python 2.5
? scipy certainly works with 2.5. Are you referring to something
else perhaps?

Yes, the Python Enthought Edition was being discussed and it is
currently based on Python 2.4.3.

http://code.enthought.com/enthon/
I'm quite familiar with Python Enthought Edition as I work at Enthought. I was
confused because Colin referenced scipy specifically rather than simply saying
that the current version of Python Enthought Edition was not based on 2.5.

--
Robert Kern

"I have come to believe that the whole world is an enigma, a harmless enigma
that is made terrible by our own mad attempt to interpret it as though it had
an underlying truth."
-- Umberto Eco

Apr 23 '07 #13

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Dr. Colombes | last post by:
MatPlotLib question: How to get more different size plot symbols in the plot function ? Is there a way to get different size squares (or circles or triangles, etc.) ? For example, in a two...
4
by: Matt Feinstein | last post by:
Hi all-- I'm planning to try to do a completely local install of matplotlib (in Fedora Core 1)-- the system administrator isn't going to stop me-- but he isn't going to cooperate either. I've...
8
by: Derek Basch | last post by:
Can anyone give any suggestions on how to make a logarithmic (base 10) x and y axis (loglog) plot in matplotlib? The scatter function doesn't seem to have any log functionality built into it. ...
0
by: spross | last post by:
hi all i have to use matplotlib on mac os x. on the official site of matplotlib, i found a link to precompiled python packages for mac os x: http://pythonmac.org/packages/py24-fat/index.html ...
5
by: John Henry | last post by:
I've been asking this question at the matplotlib user list and never gotten an answer. I am hoping that there are matplotlib users here that can help. My problem with matplotlib's way of...
1
by: redcic | last post by:
I've got a question regarding matplotlib. I use the command: pylab.plot(...) to create a graph. Then, the execution of the code stops after the line: pylab.show() which is off course the last...
3
by: vajratkarviraj | last post by:
i hav python2.5, matplotlib0.90.1, and py2exe for python 2.5 all on windows xp... i hav a python program(letsc.py) which uses the matplotlib package... and i want 2 make an exe of it for distribution...
4
by: John Henry | last post by:
Has anybody been able to create an exe of their python applications involving matplotlib using pyinstall (ver 1.3)? I am getting a: RuntimeError: Could not find the matplotlib data files when...
0
by: PamMish1982 | last post by:
Hi all, I have recently started using Python and I am trying to make a GUI out of Tkinter. I am using matplotlib for the graphic purposes. I have to make a exe file from this code. I use py2exe...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.