Re: [Matplotlib-users] plotting without using pylab

2008-10-02 Thread Eric Firing
Florian Koelling wrote: > Hello again! > > I think it's not a namespace problem. > I tried: > > from pylab import plot as pplot > import pylab as p > > As result I received busted SD Files. I ' ve this problem nearly for I am not familiar with pybel and I don't know what an SD file is, so I ha

Re: [Matplotlib-users] plotting without using pylab

2008-10-02 Thread Christopher Barker
Florian Koelling wrote: > Actually I'm not using any matplotlib code -- just the import statement > -- and it's enough that all goes to hell. > With "import matplotlib" I do not have those problems It sounds like you have a problem with whatever back-end is the default. Try changing that in yo

Re: [Matplotlib-users] plotting without using pylab

2008-10-02 Thread Michael Droettboom
Florian Koelling wrote: > Hello again! > > I think it's not a namespace problem. > I tried: > > from pylab import plot as pplot > import pylab as p > > As result I received busted SD Files. I ' ve this problem nearly for > three months - so I switched to Gnuplot - now recognizing that it is > doesn

Re: [Matplotlib-users] plotting without using pylab

2008-10-02 Thread Florian Koelling
Hello again! I think it's not a namespace problem. I tried: from pylab import plot as pplot import pylab as p As result I received busted SD Files. I ' ve this problem nearly for three months - so I switched to Gnuplot - now recognizing that it is doesn't have enough performance to make a large

Re: [Matplotlib-users] plotting without using pylab

2008-10-01 Thread Gary Pajer
On Wed, Oct 1, 2008 at 12:34 PM, Florian Koelling <[EMAIL PROTECTED] > wrote: > Hi Folks! > > Is there a way to plot simple x/y Data in matplotlib WITHOUT using the > "import pylab" command? (in all examples I only saw pylab). > > I' working with openbabel(pybel) as well and I've got serious probl

Re: [Matplotlib-users] plotting without using pylab

2008-10-01 Thread Michael Droettboom
All of the examples in the "api" directory use the object-oriented interface, rather than the pylab one. Florian Koelling wrote: > Hi Folks! > > Is there a way to plot simple x/y Data in matplotlib WITHOUT using the > "import pylab" command? (in all examples I only saw pylab). > > I' working with