Re: [Matplotlib-users] from pylab import nx?

2008-05-07 Thread New2Python

Hi All,

I have the same issue, is there a fix to this



Michael Droettboom-3 wrote:
 
 Eric Firing wrote:
 Chris Withers wrote:
   
 Hi All,

 A few of the units demos include the lines:

 from pylab import nx

 ...but this import errors for me.

 Why is that?
 

 If you are referring to scripts in the matplotlib/examples/ subdirectory 
 then you must have a version in which some of those scripts had not been 
 brought up to date with the rest of matplotlib. (Historically, this has 
 often been the case--only a subset of the examples are maintained. 
 Right now, for example, simple3d.py is broken.  3D plotting is itself 
 unmaintained, so there is little incentive to do anything about the 
 example.) In the svn version there are no lines importing nx.  This was 
 an abbreviation for the numerix module, which was a compatibility 
 wrapper for the three different numeric packages (Numeric, numarray, and 
 numpy)  until numpy was fully developed, rendering Numeric and numarray 
 obsolete.
   
 Slightly OT, but if matplotlib is participating in any sort of 
 internship projects (Google Summer of Code etc.) that would be a great 
 student project -- to clean up all the examples, removing dead ones, 
 editing for consistency etc.
 
 Cheers,
 Mike
 
 -
 This SF.net email is sponsored by: Microsoft
 Defy all challenges. Microsoft(R) Visual Studio 2008.
 http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
 ___
 Matplotlib-users mailing list
 Matplotlib-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/matplotlib-users
 
 

-- 
View this message in context: 
http://www.nabble.com/from-pylab-import-nx--tp16118581p17105429.html
Sent from the matplotlib - users mailing list archive at Nabble.com.


-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users


Re: [Matplotlib-users] from pylab import nx?

2008-03-21 Thread Michael Droettboom
Chris Withers wrote:
 Eric Firing wrote:
   
 If you are referring to scripts in the matplotlib/examples/ subdirectory 
 then you must have a version in which some of those scripts had not been 
 brought up to date with the rest of matplotlib. 
 

 You should turn them into unit tests as well as examples.
   
The backend_driver.py example runs a number of other examples using a 
number of different backends.  That's been a reasonably successful set 
of regression and coverage tests.  It's not perfect, but it's a start.  
There are also some lower-level unit tests for frequently-reoccurring 
bugs in the unit directory.

Mike

-- 
Michael Droettboom
Science Software Branch
Operations and Engineering Division
Space Telescope Science Institute
Operated by AURA for NASA


-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users


Re: [Matplotlib-users] from pylab import nx?

2008-03-21 Thread Michael Droettboom

Chris Withers wrote:
 Michael Droettboom wrote:
 The backend_driver.py example runs a number of other examples using 
 a number of different backends.  That's been a reasonably successful 
 set of regression and coverage tests.  It's not perfect, but it's a 
 start.  There are also some lower-level unit tests for 
 frequently-reoccurring bugs in the unit directory.

 Indeed, is there any kind of full unit test suite that a developer 
 can run when changing things ot make sure they haven't fubarred anything?

backend_driver.py is, AFAIK, the closest thing to that.  I recently did 
a coverage analysis of it (with coverage.py), and it hits something like 
98% of the non-error case code, so it's pretty good.

What we don't have is an automated regression test framework to see if 
the results remain correct.  There are a number of reasons why this is a 
non-trivial task -- there was a thread about that on this list a few 
months ago.  Unfortunately, I can't find it...  Maybe someone else 
remembers the subject line?

Mike


-- 
Michael Droettboom
Science Software Branch
Operations and Engineering Division
Space Telescope Science Institute
Operated by AURA for NASA


-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users


[Matplotlib-users] from pylab import nx?

2008-03-18 Thread Chris Withers
Hi All,

A few of the units demos include the lines:

from pylab import nx

...but this import errors for me.

Why is that?

cheers,

Chris

-- 
Simplistix - Content Management, Zope  Python Consulting
- http://www.simplistix.co.uk

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users


Re: [Matplotlib-users] from pylab import nx?

2008-03-18 Thread Zane Selvans

Chris Withers wrote:

Hi All,

A few of the units demos include the lines:

from pylab import nx

...but this import errors for me.


Not sure if this is relevant, but NX is a frequently used shorthand for 
the NetworkX graph/network analysis package from Los Alamos National Labs:


https://networkx.lanl.gov/reference/networkx/networkx-module.html

i.e. people do:

import NetworkX as nx

It has a sub-package for drawing networks in pylab 
(networkx.drawing.nx_pylab).  Maybe at some point someone was trying to 
integrate NetworkX with pylab directly and some tests got left laying 
around?  The NetworkX guys would probably know.


--
Zane Selvans
Amateur Human
[EMAIL PROTECTED]
303/815-6866
PGP Key: 55E0815F
begin:vcard
fn:Zane Selvans
n:Selvans;Zane
org:Earthlings
adr:;;200 S. Parkwood Ave.;Pasadena;CA;91107;USA
email;internet:[EMAIL PROTECTED]
title:Amateur Human
tel;cell:(303) 815-6866
x-mozilla-html:TRUE
url:https://ideotrope.org
version:2.1
end:vcard

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users


Re: [Matplotlib-users] from pylab import nx?

2008-03-18 Thread Eric Firing
Chris Withers wrote:
 Hi All,
 
 A few of the units demos include the lines:
 
 from pylab import nx
 
 ...but this import errors for me.
 
 Why is that?

If you are referring to scripts in the matplotlib/examples/ subdirectory 
then you must have a version in which some of those scripts had not been 
brought up to date with the rest of matplotlib. (Historically, this has 
often been the case--only a subset of the examples are maintained. 
Right now, for example, simple3d.py is broken.  3D plotting is itself 
unmaintained, so there is little incentive to do anything about the 
example.) In the svn version there are no lines importing nx.  This was 
an abbreviation for the numerix module, which was a compatibility 
wrapper for the three different numeric packages (Numeric, numarray, and 
numpy)  until numpy was fully developed, rendering Numeric and numarray 
obsolete.

Eric

 
 cheers,
 
 Chris
 


-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users


Re: [Matplotlib-users] from pylab import nx?

2008-03-18 Thread Michael Droettboom
Eric Firing wrote:
 Chris Withers wrote:
   
 Hi All,

 A few of the units demos include the lines:

 from pylab import nx

 ...but this import errors for me.

 Why is that?
 

 If you are referring to scripts in the matplotlib/examples/ subdirectory 
 then you must have a version in which some of those scripts had not been 
 brought up to date with the rest of matplotlib. (Historically, this has 
 often been the case--only a subset of the examples are maintained. 
 Right now, for example, simple3d.py is broken.  3D plotting is itself 
 unmaintained, so there is little incentive to do anything about the 
 example.) In the svn version there are no lines importing nx.  This was 
 an abbreviation for the numerix module, which was a compatibility 
 wrapper for the three different numeric packages (Numeric, numarray, and 
 numpy)  until numpy was fully developed, rendering Numeric and numarray 
 obsolete.
   
Slightly OT, but if matplotlib is participating in any sort of 
internship projects (Google Summer of Code etc.) that would be a great 
student project -- to clean up all the examples, removing dead ones, 
editing for consistency etc.

Cheers,
Mike

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users