"The longitude and latitude lines can be labelled where they
the map projection boundary"
at
http://matplotlib.sourceforge.net/basemap/doc/html/users/graticule.html
Marc Desmarais
Long Beach, CA, 90814
--- On Wed, 8/19/09, marc desmarais wrote:
From: marc desmarais
Subject: embeding bas
Hello,
For an application, I am writing, I need the naviguation toolbar 2 and
the BoxSelector and Lasso widgets. The user should be able to select
with the Lasso or BoxSelector widget even when zoom or pan is active
by pressing a modifier key.
I have managed to do this with the following code (for
How do I embed basemap in Tk? I tried following the matplotlib example. But
the following does not work (the earth does not appear):
import matplotlib
matplotlib.use('TkAgg')
from matplotlib.backends.backend_tkagg import FigureCanvasTkAgg,
NavigationToolbar2TkAgg
from matplotlib.figure import
Thank you, Jae-Joon. Again. :)
On 8/18/2009 2:49 PM, Jae-Joon Lee wrote:
> I guess you're using 0.99?
> Use spines instead.
>
> for example,
>
> gca().spines["bottom"].set_linewidth(2) # it only changes the
> linewidth of the bottom spine.
>
> also, see this example,
>
> http://matplotlib.sourcefo
Thank you! This is just what I was looking for.
I found an "undocumented feature", though: if you use
spine.set_position(), the label on that spine goes away.
-ea
-- --- - --- --- -
Dr. Eric Ayars
Associate Professor of Physics
California State University, Chico
ay.
Jae-Joon Lee wrote:
> You need to adjust the positions of the ticks.
> bar command (by default) creates boxes so that their left side
> corresponds the first argument.
>
> http://matplotlib.sourceforge.net/api/pyplot_api.html#matplotlib.pyplot.bar
>
> so, in your case, something like below will wor
Eric,
Eric Firing wrote:
> Werner F. Bruhin wrote:
>> Werner F. Bruhin wrote:
>> ...
>>> Ideally I would like to have these labels printed at an angle.
>> Put my glasses on and found the rotation property in the
>> documentation, only issue left is centering the labels below the bars.
>
> Are you
On Wed, Aug 19, 2009 at 3:25 PM, Christophe
Dupre wrote:
> I just saw the email below from John, and I was wondering why using compound
> paths are "goo-gobs" faster than using rectangles(patches)?
>
> I've been using the candlestick function quite a bit lately. I guess using
> compound paths could
I just saw the email below from John, and I was wondering why using compound
paths are "goo-gobs" faster than using rectangles(patches)?
I've been using the candlestick function quite a bit lately. I guess using
compound paths could make the candlestick function faster. I'll give it a try.
Rega
On Tue, Aug 18, 2009 at 3:55 AM, M. Hecht wrote:
> The first figure is drawn without problems but after closing it (by clicking
> the cross in the upper
> right corner of the window) the second figure cannot be plot anymore. What I
> wanted to do was
> to visualize all selected files of a directory
On Thu, Aug 13, 2009 at 12:59 PM, Eric Ayars wrote:
> Hello,
>
> I've been using Gnuplot for years, but am quite impressed with what I
> see in matplotlib and am in the process of learning enough to switch.
> One item that I haven't been able to figure out yet is how to plot on
> an "open box".
>
>
On Thu, Aug 13, 2009 at 12:51 PM, Erik Schweller wrote:
> Good day,
>
> I've hit an issue that may be a bug. In a previous version of
> matplotlib (.98.x) I had a picker set for lines plotted on two axes.
> This was working until I upgraded to version 0.99.0. Now the first
> axes's pick events n
The one 'preliminary' solution I found is using an interactive mode +
raw_input.
Here is and example,
ion()
plot([1,2,3,4,5])
raw_input('Type Enter')
clf()
plot([1,2,3,4,5])
raw_input('Type_Enter')
clf()
plot([1,2,3,4,5])
sho
On Tue, Aug 18, 2009 at 3:55 AM, M. Hecht wrote:
>
> Hello,
>
> I'm totally new to matplotlib, so sorry if the question is stupid.
>
> I'm trying this slightly modified example from the examples page
>
> from pylab import *
> A = rand(5,5)
> figure(1)
> imshow(A, interpolation='bicubic')
> show()
On Thu, Aug 13, 2009 at 1:21 PM, William Miner wrote:
> When will a version of Matplotlib be available that’s compatible with Python
> 2.6?
matplotlib-0.99 is compatible with python 2.6
--
Let Crystal Reports handle the r
Michael,
Thanks, I rebuilt and now hist is working again.
- Chuck
On Wed, Aug 19, 2009 at 12:08 PM, Michael Droettboom wrote:
> Have you tried removing the build directory to force a full rebuild?
> draw_gouraud_triangle was recently added to the _backend_agg extension, so I
> would guess for so
Hi all,
I've come across an apparent bug in imshow when outputting to PDF and
EPS files. (I haven't tested other vector formats.) It manifests as
a small scaling error between the raster image and the axes
coordinates.
I have attached a test script to illustrate the problem. The
(correct) PNG
Have you tried removing the build directory to force a full rebuild?
draw_gouraud_triangle was recently added to the _backend_agg extension,
so I would guess for some reason it is still loading an old version of
that extension. If forcing the full rebuild doesn't help, can you send
the output
Hello,
I'm totally new to matplotlib, so sorry if the question is stupid.
I'm trying this slightly modified example from the examples page
from pylab import *
A = rand(5,5)
figure(1)
imshow(A, interpolation='bicubic')
show()
close(1)
A = rand(5,5)
figure(2)
imshow(A, interpolation='bicubic')
s
Hi everybody,
i am a newbie on Matplotlib and wanna know whether there is already tick
setting on x,y,z axes in 3D plot. By now i just know on 2-dimension which
listed on the gallery.
Thanks very much!
--
View this message in context:
http://www.nabble.com/plot3d-ticker-setting-tp25029488p250294
tfoutz99,
I occasionally run into this issue as well. At quick glance I suspect it
may be related to the limitation listed at:
http://www.scipy.org/scipy/scikits/ticket/61
...but I could be way off base as I'm not sure if the code is derived from
the same place.
-Erik
tfoutz99 wrote:
>
> Hi
Hello,
I've been using Gnuplot for years, but am quite impressed with what I
see in matplotlib and am in the process of learning enough to switch.
One item that I haven't been able to figure out yet is how to plot on
an "open box".
For example, in Gnuplot I would give the commands
s
Good day,
I've hit an issue that may be a bug. In a previous version of
matplotlib (.98.x) I had a picker set for lines plotted on two axes.
This was working until I upgraded to version 0.99.0. Now the first
axes's pick events never seem to fire even though they respond true if
queried with pi
When will a version of Matplotlib be available that¹s compatible with Python
2.6?
Thanks!
Buff Miner
--
Enig Associates, Inc.
Suite 500, Bethesda Crescent Bldg.
4600 East West Hwy
Bethesda, Maryland 20814
Tel:(301)680-8600
Fax:(301)680-8100
This message is intended only for the use of the inten
Good day,
I've hit an issue that may be a bug. In a previous version of
matplotlib (.98.x) I had a picker set for lines plotted on two axes.
This was working until I upgraded to version 0.99.0. Now the first
axes's pick events never seem to fire even though they respond true if
queried with pic
Hey guys,
I'm very new to python and matplotlib (in fact all programing) and I've been
trying to figure out a way to plot a series of data that's saved to a file.
I'd like for there to be some delay when the plot refreshes too, so maybe
like 1-2 seconds.
The file looks something like this
1000
I am using the svn matplotlib (1.0.svn) and when I try to plot a histogram I
get an AttributeError for draw_gouraud_triangle (traceback below). I have
not had this problem in the past. Is anyone else experiencing this?
Thanks,
- Chuck
In [3]: x = mu + sigma*randn(10)
In [4]: hist(x, 50, nor
On Wed, Aug 19, 2009 at 1:02 PM, Ryan May wrote:
> On Wed, Aug 19, 2009 at 11:55 AM, coati wrote:
>
>>
>> I have a problem with show() command in my macbook machine (Leopard
>> 10.5.8).
>> For example, if I run the script shown below
>> (let assume it is saved as 'test.py', and I run a command
On Wed, Aug 19, 2009 at 11:55 AM, coati wrote:
>
> I have a problem with show() command in my macbook machine (Leopard
> 10.5.8).
> For example, if I run the script shown below
> (let assume it is saved as 'test.py', and I run a command 'python
> test.py'),
>
> --
I have a problem with show() command in my macbook machine (Leopard 10.5.8).
For example, if I run the script shown below
(let assume it is saved as 'test.py', and I run a command 'python test.py'),
---
plot([1,2,3,4,5])
show() #first window
plot([1,2,3,4,5]
Hi,
I updated matplotlib to svn r 7506, but it won't build. I am having
problems with the mac os backend:
10.5.8, gcc 4.0.1:
python setup.py build install run from the matplotlib/matplotlib
directory gives:
.
building 'matplotlib.backends._macosx' extension
gcc -arch ppc -arch i386 -isysroot /
31 matches
Mail list logo