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
(12) |
2
(13) |
3
(14) |
4
(9) |
|
5
(9) |
6
(22) |
7
(17) |
8
(16) |
9
(19) |
10
(17) |
11
(6) |
|
12
|
13
(20) |
14
(21) |
15
(20) |
16
(10) |
17
(14) |
18
(3) |
|
19
(3) |
20
(12) |
21
(22) |
22
(26) |
23
(31) |
24
(26) |
25
(9) |
|
26
(4) |
27
(33) |
28
(15) |
29
(37) |
30
(26) |
|
|
|
From: Crend K. <cre...@gm...> - 2009-04-03 23:20:51
|
Hello everyone. I have a problem about the PS backend and the Draw Event. I read the "Automatically make room for tick labels" section <http://matplotlib.sourceforge.net/faq/howto_faq.html#automatically-make-room-for-tick-labels> in the matplotlib Howto page. It is very useful to my project, and I would like to adopt it. I wrote a test program as follows: > #!/usr/bin/env python > > import matplotlib > matplotlib.use("PS") > > import pylab > > def on_draw(event): > fig = pylab.gcf() > cur_bottom = fig.subplotpars.bottom > > if cur_bottom != 0.2: > fig.subplots_adjust(bottom=0.2) > fig.canvas.draw() > > print("moved bottom") > > pylab.xlabel("x axis\nlabel\nis\nlong") > pylab.gcf().canvas.mpl_connect('draw_event', on_draw) > #pylab.subplots_adjust(bottom=0.2) > > pylab.savefig("test.eps") which just lifts the bottom to 0.2. If I execute this program, "moved bottom" is displayed just once, but the figure is actually not moved. If I simple uncomment the line after mpl_connect, figure is lifted. However, if I change the backend from "PS" to "Agg" and generate "test.png" instead, "moved bottom" is displayed twice, and figure is moved. So I think when using Agg to generate png image, the canvas draw() invokes the Draw Event again and shows the second "moved bottom". This makes sense. My question is, when using PS backend, why does not the subplots_adjust work in on_draw()? And why does not the canvas draw() invokes the Draw Event? Is this is an known issue? I cannot switch my backend to Agg, because Agg does not produce hatch, which is essential to my images. Thanks in advance for you help! |
|
From: Michael D. <md...@st...> - 2009-04-03 20:37:30
|
It looks like you're all heading down the right path. I'm happy to help (as the original author of the transforms code), but I'm going to be generally unavailable until Thursday or Friday of next week. Cheers, Mike Eric Firing wrote: > Cohen-Tanugi Johann wrote: >> I tried to look at the code (axes.py I presume) in order to attempt a >> patch, but it defeated me, I do not have the instructions to >> navigate through this code :) >> Where is the actual transform of the error bars occurring? > > I think it is in the draw (or recache) method of the artists. > > The right way to handle this problem is not obvious to me. Maybe with > a variant of the log scale that clips instead of masking invalid > points. And maybe instead of making a whole set of such variants, the > behavior--masking versus clipping, and the clip level if the > latter--should be handled by an rcParam. > > Eric > >> thanks, >> Johann >> >> Michael Droettboom wrote: >>> I have to say I don't really have a lot of experience with error >>> bars on log plots -- but the root cause here is that the lower bound >>> of the error bar goes negative, and as we all know, the log of a >>> negative number is undefined. If you can suggest where the lower >>> bound should be drawn or provide third-party examples, I'm happy to >>> look into this further and resolve this "surprise". >>> >>> Mike >>> >>> Cohen-Tanugi Johann wrote: >>>> yes exactly.... >>>> I should have provided a test case, thanks for following up! >>>> Johann >>>> >>>> Matthias Michler wrote: >>>> >>>>> Hello Johann, >>>>> >>>>> is the problem you are reporting the one I observe in the attached >>>>> picture? Namely some vertical and horizontal lines are missing >>>>> when using yscale="log". More precisely everything below y=1 seems >>>>> to be missing. >>>>> >>>>> The picture was generated with the code below and >>>>> matplotlib.__version__ = '0.98.6svn' >>>>> matplotlib.__revision__ = '$Revision: 6887 $' >>>>> >>>>> best regards Matthias >>>>> >>>>> ############################### >>>>> import numpy as np >>>>> import matplotlib.pyplot as plt >>>>> >>>>> plt.subplot(111, xscale="log", yscale="log") >>>>> x = 10.0**np.linspace(0.0, 2.0, 20) >>>>> y = x**2.0 >>>>> plt.errorbar(x, y, xerr=0.1*x, yerr=5.0+0.75*y) >>>>> plt.show() >>>>> ################################ >>>>> On Friday 27 March 2009 16:12:12 Cohen-Tanugi Johann wrote: >>>>> >>>>>> Hello, what is the best way to get log log plots with error bars? I >>>>>> tried putting log10() everywhere but as I was afraid results look >>>>>> ugly.... >>>>>> thanks, >>>>>> johann -- Michael Droettboom Science Software Branch Operations and Engineering Division Space Telescope Science Institute Operated by AURA for NASA |
|
From: Thomas R. <tho...@gm...> - 2009-04-03 20:33:35
|
> image.set_clim(vmin=10) This works great - thanks! Thomas |
|
From: Eric F. <ef...@ha...> - 2009-04-03 20:32:14
|
Thomas Robitaille wrote: > Hello, > > I am plotting a numpy array with > > image = imshow(array,vmin=0,vmax=100) > > If I want to change the array, I can then do > > image.set_data(new_array) > > and I can also update the colormap, etc. But I can't find any options > to update the vmin and vmax values. Am I missing something? What I am > looking for is something like this: > > image = imshow(array,vmin=0,vmax=100) > image.set_vmin = 10 > > but there is now such function. image.set_clim(vmin=10) You will have to call draw() because the OO interface does not do so automatically. Or you can use the pyplot clim() function, which does call draw. Eric > > Thanks, > > Thomas > > ------------------------------------------------------------------------------ > _______________________________________________ > Matplotlib-users mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matplotlib-users |
|
From: Thomas R. <tho...@gm...> - 2009-04-03 20:20:37
|
Hello, I am plotting a numpy array with image = imshow(array,vmin=0,vmax=100) If I want to change the array, I can then do image.set_data(new_array) and I can also update the colormap, etc. But I can't find any options to update the vmin and vmax values. Am I missing something? What I am looking for is something like this: image = imshow(array,vmin=0,vmax=100) image.set_vmin = 10 but there is now such function. Thanks, Thomas |
|
From: Jae-Joon L. <lee...@gm...> - 2009-04-03 15:51:33
|
I'm afraid that I'm still confused and there seems to be not much thing I can help.. You're considering a circle, but you already have your function in a cartesian coordinate. I'm not sure why you can't just plot in a cartesian coordinate? (in other words, what is wrong with your original script?) There is an "set_image_extent" call in your original script (although commented out). Maybe what you're trying to do is simply im = imshow(Z, cmap=cm.jet, extent=(-3, 3, -3, 3)) I'm not sure it would be relevant, but if you have your function or data in (r, theta) coordinate, one simple way is just to use the polar axes with pcolormesh method. n_theta, n_r = 100, 50 theta = np.linspace(0, 2*np.pi, n_theta+1) r = np.linspace(0., 1., n_r + 1) data = np.arange(0., n_theta*n_r).reshape(n_r, n_theta) ax=subplot(1,1,1, projection="polar", aspect=1.) ax.pcolormesh(theta, r, data) -JJ |
|
From: Lorenzo I. <lor...@gm...> - 2009-04-03 14:48:27
|
Hello, I'll try to make myself clear with a simple example: consider a circle in 2D Cartesian coordinates (x,y) (my domain). On that circle, for each (x,y) coordinate, you want to plot the function f(x,y)=x+y How would you do that in pylab? perhaps I should have called this a surface plot (as if I was plotting a temperature field on a tube cross-section) This is easy to do in pylab if the domain is e.g. a square, but I do not know how to handle the simple case I described above conveniently. Many thanks Lorenzo 2009/4/2 Jae-Joon Lee <lee...@gm...>: > On Wed, Apr 1, 2009 at 6:50 AM, Lorenzo Isella <lor...@gm...> wrote: >> Now, I would like to plot exactly the same function but on a circular >> domain (circle of radius 1 centered at (0,0)). > > You have an image with x,y spanning from -1 to 1. How do you transform > your x,y coordinate to r, theta? Or, x,y in your example actually > corresponds to r, theta in polar coordinate? > In that case, is it simply that you want to your image centered at > (0,0)? Use the extent keyword of imshow command. > > http://matplotlib.sourceforge.net/api/pyplot_api.html#matplotlib.pyplot.imshow > > It is not clear what you want. > Regards, > > -JJ > -- Life is what happens to you while you're busy making other plans. |
|
From: Josh H. <jh...@vn...> - 2009-04-03 13:53:31
|
Brian Granger-2 wrote: > > Wow, it is really striking how much better the matplotlib version of > this plot is compared to R. Very nice! > > Brian > Brian, yes, I agree! John Hunter-4 wrote: > > Sorry forgot to answer your second question. You can create multiple > columns and rows of subplots using the subplot command. Here is an > example: > > > http://matplotlib.sourceforge.net/examples/pylab_examples/line_styles.html > > and here is the subplot tutorial > > > http://matplotlib.sourceforge.net/users/pyplot_tutorial.html#working-with-multiple-figures-and-axes > > When working with lots-o-subplots, you may want to adjust the spacing > between them as well as around the edges with "subplots_adjust" > > > http://matplotlib.sourceforge.net/api/figure_api.html#matplotlib.figure.Figure. > subplots_adjust > > There is also a pyplot command by the same name. > > JDH > John, thanks for the helpful links. Thinking about my data more and what I am trying to visualize I now think that the spie charts are not appropriate, as they are intended for merging two pie charts based on the same underlying context (e.g. expected proportions vs actual proportions). That being said, I think the polar bar chart example you sent plus the example of how to have a gridded layout of plots will get me what I need. I realize these examples were right there in the gallery, but it helps to have people suggest things sometimes, so thanks again for responding as you did and not (the seemingly typical forum) "RTFM". If what I come up with is different/interesting enough I'll work on submitting it as an example to the matplotlib gallery. Josh -- View this message in context: http://www.nabble.com/spie-charts-in-matplotlib--tp22856064p22868864.html Sent from the matplotlib - users mailing list archive at Nabble.com. |
|
From: John H. <jd...@gm...> - 2009-04-03 11:47:23
|
On Thu, Apr 2, 2009 at 3:11 PM, totallyunimodular <jh...@vn...> wrote: > > I am interested in making spie charts in matplotlib, as discussed > http://www.nabble.com/forum/NewTopic.jtp?forum=2906 here and > http://addictedtor.free.fr/graphiques/RGraphGallery.php?graph=106 available > in R . Additionally, I would like to have a grid of such charts within a > single graphic frame, something along the lines of the > http://addictedtor.free.fr/graphiques/RGraphGallery.php?graph=63 star chart > demo in the R gallery, but with spie charts instead of star charts. > Sorry forgot to answer your second question. You can create multiple columns and rows of subplots using the subplot command. Here is an example: http://matplotlib.sourceforge.net/examples/pylab_examples/line_styles.html and here is the subplot tutorial http://matplotlib.sourceforge.net/users/pyplot_tutorial.html#working-with-multiple-figures-and-axes When working with lots-o-subplots, you may want to adjust the spacing between them as well as around the edges with "subplots_adjust" http://matplotlib.sourceforge.net/api/figure_api.html#matplotlib.figure.Figure. subplots_adjust There is also a pyplot command by the same name. JDH |
|
From: Eric F. <ef...@ha...> - 2009-04-03 07:32:00
|
Cohen-Tanugi Johann wrote: > I tried to look at the code (axes.py I presume) in order to attempt a > patch, but it defeated me, I do not have the instructions to navigate > through this code :) > Where is the actual transform of the error bars occurring? I think it is in the draw (or recache) method of the artists. The right way to handle this problem is not obvious to me. Maybe with a variant of the log scale that clips instead of masking invalid points. And maybe instead of making a whole set of such variants, the behavior--masking versus clipping, and the clip level if the latter--should be handled by an rcParam. Eric > thanks, > Johann > > Michael Droettboom wrote: >> I have to say I don't really have a lot of experience with error bars >> on log plots -- but the root cause here is that the lower bound of the >> error bar goes negative, and as we all know, the log of a negative >> number is undefined. If you can suggest where the lower bound should >> be drawn or provide third-party examples, I'm happy to look into this >> further and resolve this "surprise". >> >> Mike >> >> Cohen-Tanugi Johann wrote: >>> yes exactly.... >>> I should have provided a test case, thanks for following up! >>> Johann >>> >>> Matthias Michler wrote: >>> >>>> Hello Johann, >>>> >>>> is the problem you are reporting the one I observe in the attached >>>> picture? Namely some vertical and horizontal lines are missing when >>>> using yscale="log". More precisely everything below y=1 seems to be >>>> missing. >>>> >>>> The picture was generated with the code below and >>>> matplotlib.__version__ = '0.98.6svn' >>>> matplotlib.__revision__ = '$Revision: 6887 $' >>>> >>>> best regards Matthias >>>> >>>> ############################### >>>> import numpy as np >>>> import matplotlib.pyplot as plt >>>> >>>> plt.subplot(111, xscale="log", yscale="log") >>>> x = 10.0**np.linspace(0.0, 2.0, 20) >>>> y = x**2.0 >>>> plt.errorbar(x, y, xerr=0.1*x, yerr=5.0+0.75*y) >>>> plt.show() >>>> ################################ >>>> On Friday 27 March 2009 16:12:12 Cohen-Tanugi Johann wrote: >>>> >>>>> Hello, what is the best way to get log log plots with error bars? I >>>>> tried putting log10() everywhere but as I was afraid results look >>>>> ugly.... >>>>> thanks, >>>>> johann |
|
From: Cohen-Tanugi J. <co...@lp...> - 2009-04-03 06:03:32
|
hello..... Anyone? I would very much love to see this fixed, and I am ready to help out, but I do not know how to browse through the code. Despite the fact that log(errors) should of course not be used, but rathter errors/values/log(10), Michael's point still remains : values- errors in log scale can be negative, so that the artist should just draw a bar until the lower limit of the vertical bar. I would say that this is the standard practice. Sorry for my previous email beside the point. Johann Cohen-Tanugi Johann wrote: > I tried to look at the code (axes.py I presume) in order to attempt a > patch, but it defeated me, I do not have the instructions to navigate > through this code :) > Where is the actual transform of the error bars occurring? > thanks, > Johann > > Michael Droettboom wrote: > >> I have to say I don't really have a lot of experience with error bars >> on log plots -- but the root cause here is that the lower bound of the >> error bar goes negative, and as we all know, the log of a negative >> number is undefined. If you can suggest where the lower bound should >> be drawn or provide third-party examples, I'm happy to look into this >> further and resolve this "surprise". >> >> Mike >> >> Cohen-Tanugi Johann wrote: >> >>> yes exactly.... >>> I should have provided a test case, thanks for following up! >>> Johann >>> >>> Matthias Michler wrote: >>> >>> >>>> Hello Johann, >>>> >>>> is the problem you are reporting the one I observe in the attached >>>> picture? Namely some vertical and horizontal lines are missing when >>>> using yscale="log". More precisely everything below y=1 seems to be >>>> missing. >>>> >>>> The picture was generated with the code below and >>>> matplotlib.__version__ = '0.98.6svn' >>>> matplotlib.__revision__ = '$Revision: 6887 $' >>>> >>>> best regards Matthias >>>> >>>> ############################### >>>> import numpy as np >>>> import matplotlib.pyplot as plt >>>> >>>> plt.subplot(111, xscale="log", yscale="log") >>>> x = 10.0**np.linspace(0.0, 2.0, 20) >>>> y = x**2.0 >>>> plt.errorbar(x, y, xerr=0.1*x, yerr=5.0+0.75*y) >>>> plt.show() >>>> ################################ >>>> On Friday 27 March 2009 16:12:12 Cohen-Tanugi Johann wrote: >>>> >>>> >>>>> Hello, what is the best way to get log log plots with error bars? I >>>>> tried putting log10() everywhere but as I was afraid results look >>>>> ugly.... >>>>> thanks, >>>>> johann >>>>> >>>>> ------------------------------------------------------------------------ >>>>> >>>>> >>>>> ------------------------------------------------------------------------ >>>>> >>>>> >>>>> ------------------------------------------------------------------------------ >>>>> >>>>> >>>>> ------------------------------------------------------------------------ >>>>> >>>>> >>>>> _______________________________________________ >>>>> Matplotlib-users mailing list >>>>> Mat...@li... >>>>> https://lists.sourceforge.net/lists/listinfo/matplotlib-users >>>>> >>>>> >>> ------------------------------------------------------------------------------ >>> >>> _______________________________________________ >>> Matplotlib-users mailing list >>> Mat...@li... >>> https://lists.sourceforge.net/lists/listinfo/matplotlib-users >>> >>> > > ------------------------------------------------------------------------------ > _______________________________________________ > Matplotlib-users mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matplotlib-users > |
|
From: Brian G. <ell...@gm...> - 2009-04-03 02:53:17
|
Wow, it is really striking how much better the matplotlib version of this plot is compared to R. Very nice! Brian On Thu, Apr 2, 2009 at 7:21 PM, John Hunter <jd...@gm...> wrote: > On Thu, Apr 2, 2009 at 3:11 PM, totallyunimodular <jh...@vn...> wrote: >> >> I am interested in making spie charts in matplotlib, as discussed >> http://www.nabble.com/forum/NewTopic.jtp?forum=2906 here and >> http://addictedtor.free.fr/graphiques/RGraphGallery.php?graph=106 available >> in R . Additionally, I would like to have a grid of such charts within a >> single graphic frame, something along the lines of the >> http://addictedtor.free.fr/graphiques/RGraphGallery.php?graph=63 star chart >> demo in the R gallery, but with spie charts instead of star charts. > > > Is this what you are looking for: > > http://matplotlib.sourceforge.net/examples/pylab_examples/polar_bar.html > > JDH > > ------------------------------------------------------------------------------ > _______________________________________________ > Matplotlib-users mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matplotlib-users > |
|
From: R. H. <rh...@co...> - 2009-04-03 02:34:29
|
Christopher Barker wrote:
block quote
R. Haynie wrote:
block quote
I am using VirtualEnv to have multiple virtual environments that have
their own site-packages folder. So each environment is its own sandbox.
block quote end
another reason why core python really needs to have an "official"
versioning system - either something like virtualenv, or (my
preference), package versioning built in.
Anyway, in the mean time, two ideas to try:
1) "easxy_install matplotlib" run with the easy_install in your virtual
env -- hopefully, it will install a binary Windows egg -- does one exist?
block quote end
Tried this towards the end of 2008 a few times, did not fair well at all
in Windows.
block quote
2) try manually moving the matplotlib package from the system
site-packages to your virtualenv.
Ok, this is what I tried today:
block quote end
Uninstalled any python package I had installed with a windows installer,
uninstalled all of python, and cleared the cache folder, deleted
python25 folder.
Installed python 2.5 with windows installer.
Took note of what was in site-packages.
Ran NumPy windows installer, and moved all new files and folders out of
Site-Packages. Moved them to a folder I named c:\site-packages_NumPy.
Did the same for MatPlotLib windows installer. Moved them to a folder I
named c:\site-packages_MatPlotLib.
Got real anal here and uninstalled numpy and matplotlib using the
windows uninstallers. Then uninstalled Python and cleared the cache
folder and deleted python25.
Now this is where I thought I could go and make some nice virtual
environments and have some safe sandboxes. But of course not.
Installed python, easy_install, virtualenv, pywin32.
Created new virtual environment and activated it. Copied the files from
the numpy and matplotlib site-packages folders into the new virtual
environment site-packages folder.
Tryed a simple plot, and got an error that pylab module did not exist.
So, I figured that the windows installers did more than met the eye.
They probably install some DLLs etc.
I then installed numpy and matplotlib using the windows installers.
Tried my plot test from within the virtual environment and it worked.
I created a new virtual environment, installed nothing, tried the plot
test from within that environment and the test worked. It should not
have worked.
Looks like I can only have 1 numpy and 1 matplotlib on a windows box at
a time, virtual environments or not.
block quote
Let us know how it works out...
block quote end
I sure hope someone reads this and finds something glaringly wrong with
my process.
|
|
From: John H. <jd...@gm...> - 2009-04-03 02:22:06
|
On Thu, Apr 2, 2009 at 3:11 PM, totallyunimodular <jh...@vn...> wrote: > > I am interested in making spie charts in matplotlib, as discussed > http://www.nabble.com/forum/NewTopic.jtp?forum=2906 here and > http://addictedtor.free.fr/graphiques/RGraphGallery.php?graph=106 available > in R . Additionally, I would like to have a grid of such charts within a > single graphic frame, something along the lines of the > http://addictedtor.free.fr/graphiques/RGraphGallery.php?graph=63 star chart > demo in the R gallery, but with spie charts instead of star charts. Is this what you are looking for: http://matplotlib.sourceforge.net/examples/pylab_examples/polar_bar.html JDH |