You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(3) |
Jun
|
Jul
|
Aug
(12) |
Sep
(12) |
Oct
(56) |
Nov
(65) |
Dec
(37) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(59) |
Feb
(78) |
Mar
(153) |
Apr
(205) |
May
(184) |
Jun
(123) |
Jul
(171) |
Aug
(156) |
Sep
(190) |
Oct
(120) |
Nov
(154) |
Dec
(223) |
2005 |
Jan
(184) |
Feb
(267) |
Mar
(214) |
Apr
(286) |
May
(320) |
Jun
(299) |
Jul
(348) |
Aug
(283) |
Sep
(355) |
Oct
(293) |
Nov
(232) |
Dec
(203) |
2006 |
Jan
(352) |
Feb
(358) |
Mar
(403) |
Apr
(313) |
May
(165) |
Jun
(281) |
Jul
(316) |
Aug
(228) |
Sep
(279) |
Oct
(243) |
Nov
(315) |
Dec
(345) |
2007 |
Jan
(260) |
Feb
(323) |
Mar
(340) |
Apr
(319) |
May
(290) |
Jun
(296) |
Jul
(221) |
Aug
(292) |
Sep
(242) |
Oct
(248) |
Nov
(242) |
Dec
(332) |
2008 |
Jan
(312) |
Feb
(359) |
Mar
(454) |
Apr
(287) |
May
(340) |
Jun
(450) |
Jul
(403) |
Aug
(324) |
Sep
(349) |
Oct
(385) |
Nov
(363) |
Dec
(437) |
2009 |
Jan
(500) |
Feb
(301) |
Mar
(409) |
Apr
(486) |
May
(545) |
Jun
(391) |
Jul
(518) |
Aug
(497) |
Sep
(492) |
Oct
(429) |
Nov
(357) |
Dec
(310) |
2010 |
Jan
(371) |
Feb
(657) |
Mar
(519) |
Apr
(432) |
May
(312) |
Jun
(416) |
Jul
(477) |
Aug
(386) |
Sep
(419) |
Oct
(435) |
Nov
(320) |
Dec
(202) |
2011 |
Jan
(321) |
Feb
(413) |
Mar
(299) |
Apr
(215) |
May
(284) |
Jun
(203) |
Jul
(207) |
Aug
(314) |
Sep
(321) |
Oct
(259) |
Nov
(347) |
Dec
(209) |
2012 |
Jan
(322) |
Feb
(414) |
Mar
(377) |
Apr
(179) |
May
(173) |
Jun
(234) |
Jul
(295) |
Aug
(239) |
Sep
(276) |
Oct
(355) |
Nov
(144) |
Dec
(108) |
2013 |
Jan
(170) |
Feb
(89) |
Mar
(204) |
Apr
(133) |
May
(142) |
Jun
(89) |
Jul
(160) |
Aug
(180) |
Sep
(69) |
Oct
(136) |
Nov
(83) |
Dec
(32) |
2014 |
Jan
(71) |
Feb
(90) |
Mar
(161) |
Apr
(117) |
May
(78) |
Jun
(94) |
Jul
(60) |
Aug
(83) |
Sep
(102) |
Oct
(132) |
Nov
(154) |
Dec
(96) |
2015 |
Jan
(45) |
Feb
(138) |
Mar
(176) |
Apr
(132) |
May
(119) |
Jun
(124) |
Jul
(77) |
Aug
(31) |
Sep
(34) |
Oct
(22) |
Nov
(23) |
Dec
(9) |
2016 |
Jan
(26) |
Feb
(17) |
Mar
(10) |
Apr
(8) |
May
(4) |
Jun
(8) |
Jul
(6) |
Aug
(5) |
Sep
(9) |
Oct
(4) |
Nov
|
Dec
|
2017 |
Jan
(5) |
Feb
(7) |
Mar
(1) |
Apr
(5) |
May
|
Jun
(3) |
Jul
(6) |
Aug
(1) |
Sep
|
Oct
(2) |
Nov
(1) |
Dec
|
2018 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2020 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2025 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
1
(10) |
2
(10) |
3
(8) |
4
(6) |
5
(10) |
6
(1) |
7
(3) |
8
|
9
(5) |
10
(4) |
11
(9) |
12
(6) |
13
(12) |
14
(3) |
15
(2) |
16
(13) |
17
(7) |
18
(14) |
19
(7) |
20
(3) |
21
(1) |
22
|
23
(8) |
24
(6) |
25
(3) |
26
(5) |
27
(10) |
28
(5) |
29
(1) |
30
(7) |
|
|
|
|
|
From: Emmanuel M. <ema...@ya...> - 2012-04-03 23:37:06
|
Although this work, I lose the position of the axes. How can I reposition the axes2 which was at 221 in fig2, to 221 in fig1 ? ________________________________ From: Emmanuel Mayssat <ema...@ya...> To: Eric Firing <ef...@ha...>; "mat...@li..." <mat...@li...> Sent: Monday, April 2, 2012 3:20 PM Subject: Re: [Matplotlib-users] assigning a plot object to a figure Well, not sure if that is supported, but I found a way !: [...] self.fig1 = Figure(figsize=(width, height), dpi=dpi) self.fig2 = Figure(figsize=(width, height), dpi=dpi) self.axes1 = self.fig1.add_subplot(223) self.axes2 = self.fig2.add_subplot(221) [...] self.axes2.plot([0,1]) (1) self.axes2.set_figure(self.fig1) (2) self.fig1.add_axes(self.axes2) Note that (1) and (2) are required in that order! From the code above, if I show the fig1, then I see axes1 and axes2 on the figure.... Summary: I created the axes2 independently of fig1 PS: I want to use my axes2 as an object to sent to my Qt widget (a blank figure/canvas) -- Emmanuel ________________________________ From: Eric Firing <ef...@ha...> To: mat...@li... Sent: Sunday, April 1, 2012 1:36 PM Subject: Re: [Matplotlib-users] assigning a plot object to a figure On 03/30/2012 01:23 PM, Emmanuel Mayssat wrote: > Hello all, > > I can create a figure > and get the corresponding axes/plots > > for examples: > 1/ > fig = Figure(figsize=(width, height), dpi=dpi) > ax = gif.add_subplot(111) > > 2/ > fig, ax = plt.subplots() > > but I would like to create my plot independently from the figure and > assign it to a figure > > I code I would like to do something like this > > my_ax = Axes(...) > my_ax.plot(x,y) > > > ax = my_ax > > or > > my_ax.set_figure(fig) > > How can I create the axes/plot object independently from the figure? As far as I can see, you can't. The figure is deeply embedded in the Axes object; that's why the figure is an argument in Axes.__init__(). > Better yet, how can I assign an axe to a figure? I don't think you can. It looks to me like Axes.set_figure should be clearly marked as a private method, not to be used except in Axes.__init__(). Short of a major refactoring of mpl, I think you will need to find some other way of accomplishing your ultimate aim. Eric > -- > Emmanuel ------------------------------------------------------------------------------ This SF email is sponsosred by: Try Windows Azure free for 90 days Click Here http://p.sf.net/sfu/sfd2d-msazure _______________________________________________ Matplotlib-users mailing list Mat...@li... https://lists.sourceforge.net/lists/listinfo/matplotlib-users ------------------------------------------------------------------------------ Better than sec? Nothing is better than sec when it comes to monitoring Big Data applications. Try Boundary one-second resolution app monitoring today. Free. http://p.sf.net/sfu/Boundary-dev2dev _______________________________________________ Matplotlib-users mailing list Mat...@li... https://lists.sourceforge.net/lists/listinfo/matplotlib-users |
From: Elliot S. <sta...@gm...> - 2012-04-03 22:15:10
|
Hello, I am also having trouble installing matplotlib on OSX 10.7 (Homebrew python 2.7.2, clang v2.1) and when trying to compile it from source, I get errors regarding libpng. (https://gist.github.com/2269043) These are the same errors I get when trying to install via pip. I saw that there used to be errors with libpng 1.5 (which is what I have as I am running 10.7) but they were supposedly fixed, however this does not seem to be the case. Does anyone have any tips for me? Also, I do not think that I can use a binary distribution, as they do not detect my python 2.7, and will not install to the proper site-packages directory. I also do not wish to install an "all-in-one" python distribution such as EPD as I have many other packages that I wish to use alongside matplotlib that I have already installed in my current python setup. -E |
From: Emmanuel M. <ema...@ya...> - 2012-04-03 20:59:15
|
what does figure.clear() do ? what about ax.clear()? The doc is kind of sparce. The 2 function/method above do nothing on my setup. ax.clear() I was expecting to mean 'erase all the 2DLines' figure.clear() I was expecting 'hide all the axes' Now figure.del_axes(self.figure.axes) does not do anything either.... How can I remove my axes from the figure? -- Emmanuel |
From: Jonathan S. <js...@cf...> - 2012-04-03 20:50:05
|
Hi, I've been writing a routine that interactively finds fitting limits. Some of the time it seems that doing draw() flushes the output to the figure and some of the time it doesn't. The only way I can reliably get it to do that is to insert a waitforbuttonpress into the code. However, this raises a DeprecationWarning: DeprecationWarning: Using default event loop until function specific to this GUI is implemented That of course doesn't cause any real problems, but I'd like to know how it should be done properly since using waitforbuttonpress creates this warning. Or maybe it's just a warning that in the future, once the event loop function is written for my backend (gtkagg) this function won't necessarily exist? I'd just as soon not use it, but I don't know another way to force the updating of the figure. Jon -- ______________________________________________________________ Jonathan D. Slavin Harvard-Smithsonian CfA js...@cf... 60 Garden Street, MS 83 phone: (617) 496-7981 Cambridge, MA 02138-1516 cell: (781) 363-0035 USA ______________________________________________________________ |
From: Mathew T. <mat...@ed...> - 2012-04-03 17:07:16
|
The University of Edinburgh is a charitable body, registered in Scotland, with registration number SC005336. |
From: Jeff W. <js...@fa...> - 2012-04-03 13:22:45
|
On 4/3/12 3:09 AM, David Craig wrote: > Hi again, > So I removed everything and started again ( with version 1-0-2 :) ) > but am still having trouble, GEOS_DIR seems to be set correctly but I > get the following error when trying to make the GEOS library with, > > sudo make; make install > > make[3]: Entering directory `/home/davcra/basemap-1.0.2/geos-3.3.1/src' > test -z "/home/davcra/lib" || /bin/mkdir -p "/home/davcra/lib" > /bin/sh ../libtool --mode=install /usr/bin/install -c libgeos.la > '/home/davcra/lib' > libtool: install: /usr/bin/install -c .libs/libgeos-3.3.1.so > /home/davcra/lib/libgeos-3.3.1.so > libtool: install: (cd /home/davcra/lib&& { ln -s -f libgeos-3.3.1.so > libgeos.so || { rm -f libgeos.so&& ln -s libgeos-3.3.1.so libgeos.so; > }; }) > libtool: install: /usr/bin/install -c .libs/libgeos.lai > /home/davcra/lib/libgeos.la > libtool: install: /usr/bin/install -c .libs/libgeos.a /home/davcra/lib/libgeos.a > libtool: install: chmod 644 /home/davcra/lib/libgeos.a > libtool: install: ranlib /home/davcra/lib/libgeos.a > libtool: finish: > PATH="/usr/ncl_files/bin:/usr/ncl_files/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/home/davcra/.local/bin:/home/davcra/bin:/sbin" > ldconfig -n /home/davcra/lib > ---------------------------------------------------------------------- > Libraries have been installed in: > /home/davcra/lib > > If you ever happen to want to link against installed libraries > in a given directory, LIBDIR, you must either use libtool, and > specify the full pathname of the library, or use the `-LLIBDIR' > flag during linking and do at least one of the following: > - add LIBDIR to the `LD_LIBRARY_PATH' environment variable > during execution > - add LIBDIR to the `LD_RUN_PATH' environment variable > during linking > - use the `-Wl,-rpath -Wl,LIBDIR' linker flag > - have your system administrator add LIBDIR to `/etc/ld.so.conf' > > See any operating system documentation about shared libraries for > more information, such as the ld(1) and ld.so(8) manual pages. > ---------------------------------------------------------------------- > make[3]: Nothing to be done for `install-data-am'. > make[3]: Leaving directory `/home/davcra/basemap-1.0.2/geos-3.3.1/src' > make[2]: Leaving directory `/home/davcra/basemap-1.0.2/geos-3.3.1/src' > make[1]: Leaving directory `/home/davcra/basemap-1.0.2/geos-3.3.1/src' > Making install in capi > make[1]: Entering directory `/home/davcra/basemap-1.0.2/geos-3.3.1/capi' > make[2]: Entering directory `/home/davcra/basemap-1.0.2/geos-3.3.1/capi' > test -z "/home/davcra/lib" || /bin/mkdir -p "/home/davcra/lib" > /bin/sh ../libtool --mode=install /usr/bin/install -c > libgeos_c.la '/home/davcra/lib' > libtool: install: warning: relinking `libgeos_c.la' > libtool: install: (cd /home/davcra/basemap-1.0.2/geos-3.3.1/capi; > /bin/sh /home/davcra/basemap-1.0.2/geos-3.3.1/libtool --tag CXX > --mode=relink g++ -DGEOS_INLINE -pedantic -Wall -ansi -Wno-long-long > -ffloat-store -g -O2 -version-info 8:1:7 -no-undefined -o libgeos_c.la > -rpath /home/davcra/lib libgeos_c_la-geos_c.lo > libgeos_c_la-geos_ts_c.lo ../src/libgeos.la ) > mv: cannot move `libgeos_c.so.1.7.1' to `libgeos_c.so.1.7.1U': Permission denied > libtool: install: error: relink `libgeos_c.la' with the above command > before installing it > make[2]: *** [install-libLTLIBRARIES] Error 1 > make[2]: Leaving directory `/home/davcra/basemap-1.0.2/geos-3.3.1/capi' > make[1]: *** [install-am] Error 2 > make[1]: Leaving directory `/home/davcra/basemap-1.0.2/geos-3.3.1/capi' > make: *** [install-recursive] Error 1 > > any ideas?? > thanks > D David: Seems like a permissions problem? Any reason you're not using the libgeos yum package? -Jeff > > On 3/31/12 5:48 AM, David Craig wrote: >> Hi, I previously installed basemap by using the yum command. This >> installed version 0.99.4. I want to install the latest version so I >> can use shaded relief etc. This may be more of a linux problem but as >> I am more familiar with python than linux I thought someone here may >> be able to help. >> Following the website instructions >> (http://matplotlib.github.com/basemap/users/installing.html) I >> downloaded the latest version and untarred it. Then in the basemap >> directory (which contains geos-3.2.0) I try to set the environment >> variable GEOS_DIR to point to the location of libgeos_c and geos_c.h. >> I use the find command to locate the files, >> /find / -name geos_c.h/ returns the location of that file as >> //usr/lib/basemap-1.0.1/geos-3.2.0/capi/geos_c.h/ >> and >> /find / -name libgeos*/ >> returns >> //libgeos_c_la-geos_c.Plo >> /usr/lib/libgeos-3.3.1.so<http://libgeos-3.3.1.so> >> /usr/lib/libgeos_c.so.1.7.1 >> /usr/lib/libgeos_c.so.1/ >> so I set GEOS_DIR to /usr/lib (not sure if this is correct). >> I then cd to the basemap directory and run, >> python setup.py install >> [davcra@... basemap-1.0.1]$ sudo python setup.py install >> [sudo] password for davcra: >> checking for GEOS lib in /root .... >> checking for GEOS lib in /usr .... >> checking for GEOS lib in /usr/local .... >> checking for GEOS lib in /sw .... >> checking for GEOS lib in /opt .... >> checking for GEOS lib in /opt/local .... >> >> Can't find geos library . Please set the >> environment variable GEOS_DIR to point to the location >> where geos is installed (for example, if geos_c.h >> is in /usr/local/include, and libgeos_c is in /usr/local/lib, >> set GEOS_DIR to /usr/local), or edit the setup.py script >> manually and set the variable GEOS_dir (right after the line >> that says "set GEOS_dir manually here". >> The problem seems to be with GEOS_DIR but I am not sure what I should >> set it to. >> Thanks >> D > David: > > The basemap setup.py is assuming that the geos library is installed in > <GEOS_DIR>/lib, and geos_c.h in<GEOS_DIR>/include. You should set > GEOS_DIR to the directory you specified with --prefix when you ran > configure for geos 3.2.0 (I think the default is /usr/local). However, > it looks like you have a redhat installed geos library in /usr/lib > (seems like it is version 3.3.1). You probably could just install the > -dev package (which would put the include file in /usr/include), and > the basemap setup.py would autodetect it. > > Also, the latest version of basemap is 1.0.2, not 1.0.1. > > -Jeff > > ------------------------------------------------------------------------------ > Better than sec? Nothing is better than sec when it comes to > monitoring Big Data applications. Try Boundary one-second > resolution app monitoring today. Free. > http://p.sf.net/sfu/Boundary-dev2dev > _______________________________________________ > Matplotlib-users mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matplotlib-users |
From: David C. <dcd...@gm...> - 2012-04-03 09:09:34
|
Hi again, So I removed everything and started again ( with version 1-0-2 :) ) but am still having trouble, GEOS_DIR seems to be set correctly but I get the following error when trying to make the GEOS library with, sudo make; make install make[3]: Entering directory `/home/davcra/basemap-1.0.2/geos-3.3.1/src' test -z "/home/davcra/lib" || /bin/mkdir -p "/home/davcra/lib" /bin/sh ../libtool --mode=install /usr/bin/install -c libgeos.la '/home/davcra/lib' libtool: install: /usr/bin/install -c .libs/libgeos-3.3.1.so /home/davcra/lib/libgeos-3.3.1.so libtool: install: (cd /home/davcra/lib && { ln -s -f libgeos-3.3.1.so libgeos.so || { rm -f libgeos.so && ln -s libgeos-3.3.1.so libgeos.so; }; }) libtool: install: /usr/bin/install -c .libs/libgeos.lai /home/davcra/lib/libgeos.la libtool: install: /usr/bin/install -c .libs/libgeos.a /home/davcra/lib/libgeos.a libtool: install: chmod 644 /home/davcra/lib/libgeos.a libtool: install: ranlib /home/davcra/lib/libgeos.a libtool: finish: PATH="/usr/ncl_files/bin:/usr/ncl_files/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/home/davcra/.local/bin:/home/davcra/bin:/sbin" ldconfig -n /home/davcra/lib ---------------------------------------------------------------------- Libraries have been installed in: /home/davcra/lib If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the `-LLIBDIR' flag during linking and do at least one of the following: - add LIBDIR to the `LD_LIBRARY_PATH' environment variable during execution - add LIBDIR to the `LD_RUN_PATH' environment variable during linking - use the `-Wl,-rpath -Wl,LIBDIR' linker flag - have your system administrator add LIBDIR to `/etc/ld.so.conf' See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages. ---------------------------------------------------------------------- make[3]: Nothing to be done for `install-data-am'. make[3]: Leaving directory `/home/davcra/basemap-1.0.2/geos-3.3.1/src' make[2]: Leaving directory `/home/davcra/basemap-1.0.2/geos-3.3.1/src' make[1]: Leaving directory `/home/davcra/basemap-1.0.2/geos-3.3.1/src' Making install in capi make[1]: Entering directory `/home/davcra/basemap-1.0.2/geos-3.3.1/capi' make[2]: Entering directory `/home/davcra/basemap-1.0.2/geos-3.3.1/capi' test -z "/home/davcra/lib" || /bin/mkdir -p "/home/davcra/lib" /bin/sh ../libtool --mode=install /usr/bin/install -c libgeos_c.la '/home/davcra/lib' libtool: install: warning: relinking `libgeos_c.la' libtool: install: (cd /home/davcra/basemap-1.0.2/geos-3.3.1/capi; /bin/sh /home/davcra/basemap-1.0.2/geos-3.3.1/libtool --tag CXX --mode=relink g++ -DGEOS_INLINE -pedantic -Wall -ansi -Wno-long-long -ffloat-store -g -O2 -version-info 8:1:7 -no-undefined -o libgeos_c.la -rpath /home/davcra/lib libgeos_c_la-geos_c.lo libgeos_c_la-geos_ts_c.lo ../src/libgeos.la ) mv: cannot move `libgeos_c.so.1.7.1' to `libgeos_c.so.1.7.1U': Permission denied libtool: install: error: relink `libgeos_c.la' with the above command before installing it make[2]: *** [install-libLTLIBRARIES] Error 1 make[2]: Leaving directory `/home/davcra/basemap-1.0.2/geos-3.3.1/capi' make[1]: *** [install-am] Error 2 make[1]: Leaving directory `/home/davcra/basemap-1.0.2/geos-3.3.1/capi' make: *** [install-recursive] Error 1 any ideas?? thanks D On 3/31/12 5:48 AM, David Craig wrote: > Hi, I previously installed basemap by using the yum command. This > installed version 0.99.4. I want to install the latest version so I > can use shaded relief etc. This may be more of a linux problem but as > I am more familiar with python than linux I thought someone here may > be able to help. > Following the website instructions > (http://matplotlib.github.com/basemap/users/installing.html) I > downloaded the latest version and untarred it. Then in the basemap > directory (which contains geos-3.2.0) I try to set the environment > variable GEOS_DIR to point to the location of libgeos_c and geos_c.h. > I use the find command to locate the files, > /find / -name geos_c.h/ returns the location of that file as > //usr/lib/basemap-1.0.1/geos-3.2.0/capi/geos_c.h/ > and > /find / -name libgeos*/ > returns > //libgeos_c_la-geos_c.Plo > /usr/lib/libgeos-3.3.1.so <http://libgeos-3.3.1.so> > /usr/lib/libgeos_c.so.1.7.1 > /usr/lib/libgeos_c.so.1/ > so I set GEOS_DIR to /usr/lib (not sure if this is correct). > I then cd to the basemap directory and run, > python setup.py install > [davcra@... basemap-1.0.1]$ sudo python setup.py install > [sudo] password for davcra: > checking for GEOS lib in /root .... > checking for GEOS lib in /usr .... > checking for GEOS lib in /usr/local .... > checking for GEOS lib in /sw .... > checking for GEOS lib in /opt .... > checking for GEOS lib in /opt/local .... > > Can't find geos library . Please set the > environment variable GEOS_DIR to point to the location > where geos is installed (for example, if geos_c.h > is in /usr/local/include, and libgeos_c is in /usr/local/lib, > set GEOS_DIR to /usr/local), or edit the setup.py script > manually and set the variable GEOS_dir (right after the line > that says "set GEOS_dir manually here". > The problem seems to be with GEOS_DIR but I am not sure what I should > set it to. > Thanks > D David: The basemap setup.py is assuming that the geos library is installed in <GEOS_DIR>/lib, and geos_c.h in <GEOS_DIR>/include. You should set GEOS_DIR to the directory you specified with --prefix when you ran configure for geos 3.2.0 (I think the default is /usr/local). However, it looks like you have a redhat installed geos library in /usr/lib (seems like it is version 3.3.1). You probably could just install the -dev package (which would put the include file in /usr/include), and the basemap setup.py would autodetect it. Also, the latest version of basemap is 1.0.2, not 1.0.1. -Jeff |