I receive the following message when I import pylab with: "from pylab import *":
/usr/lib64/python2.4/site-packages/matplotlib/numerix/__init__.py:67:
DeprecationWarning: Numeric use as a numerix backed for matplotlib is
deprecated
DeprecationWarning, stacklevel=1)
What can be wrong here? I am on
Beha Online wrote:
> I receive the following message when I import pylab with: "from pylab import
> *":
>
> /usr/lib64/python2.4/site-packages/matplotlib/numerix/__init__.py:67:
> DeprecationWarning: Numeric use as a numerix backed for matplotlib is
> deprecated
> DeprecationWarning, stacklevel=1
Steve Schmerler wrote:
> Beha Online wrote:
>> I receive the following message when I import pylab with: "from pylab import
>> *":
>>
>> /usr/lib64/python2.4/site-packages/matplotlib/numerix/__init__.py:67:
>> DeprecationWarning: Numeric use as a numerix backed for matplotlib is
>> deprecated
>> D
Dear All,
I am quite a newbie about Python and Pylab, but I am starting to like
the ease you can develop with using these tools.
I am interested in 2D radial plots (think for instance about the plot
of the temperature along the cross-section of a pipe).
I had a look at the tutorial online, in parti
Hey,
That's quite simple. Assume your file containing the data is name
Data.dat and is in the same directory than your python script.
from pylab import *
from numpy import *
tab = load('Data.dat') #load the file
r = tab[:,0] #get the r coordinates
theta = tab[:,1] #get the theta coordinates
T