You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
(33) |
Dec
(20) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(7) |
Feb
(44) |
Mar
(51) |
Apr
(43) |
May
(43) |
Jun
(36) |
Jul
(61) |
Aug
(44) |
Sep
(25) |
Oct
(82) |
Nov
(97) |
Dec
(47) |
2005 |
Jan
(77) |
Feb
(143) |
Mar
(42) |
Apr
(31) |
May
(93) |
Jun
(93) |
Jul
(35) |
Aug
(78) |
Sep
(56) |
Oct
(44) |
Nov
(72) |
Dec
(75) |
2006 |
Jan
(116) |
Feb
(99) |
Mar
(181) |
Apr
(171) |
May
(112) |
Jun
(86) |
Jul
(91) |
Aug
(111) |
Sep
(77) |
Oct
(72) |
Nov
(57) |
Dec
(51) |
2007 |
Jan
(64) |
Feb
(116) |
Mar
(70) |
Apr
(74) |
May
(53) |
Jun
(40) |
Jul
(519) |
Aug
(151) |
Sep
(132) |
Oct
(74) |
Nov
(282) |
Dec
(190) |
2008 |
Jan
(141) |
Feb
(67) |
Mar
(69) |
Apr
(96) |
May
(227) |
Jun
(404) |
Jul
(399) |
Aug
(96) |
Sep
(120) |
Oct
(205) |
Nov
(126) |
Dec
(261) |
2009 |
Jan
(136) |
Feb
(136) |
Mar
(119) |
Apr
(124) |
May
(155) |
Jun
(98) |
Jul
(136) |
Aug
(292) |
Sep
(174) |
Oct
(126) |
Nov
(126) |
Dec
(79) |
2010 |
Jan
(109) |
Feb
(83) |
Mar
(139) |
Apr
(91) |
May
(79) |
Jun
(164) |
Jul
(184) |
Aug
(146) |
Sep
(163) |
Oct
(128) |
Nov
(70) |
Dec
(73) |
2011 |
Jan
(235) |
Feb
(165) |
Mar
(147) |
Apr
(86) |
May
(74) |
Jun
(118) |
Jul
(65) |
Aug
(75) |
Sep
(162) |
Oct
(94) |
Nov
(48) |
Dec
(44) |
2012 |
Jan
(49) |
Feb
(40) |
Mar
(88) |
Apr
(35) |
May
(52) |
Jun
(69) |
Jul
(90) |
Aug
(123) |
Sep
(112) |
Oct
(120) |
Nov
(105) |
Dec
(116) |
2013 |
Jan
(76) |
Feb
(26) |
Mar
(78) |
Apr
(43) |
May
(61) |
Jun
(53) |
Jul
(147) |
Aug
(85) |
Sep
(83) |
Oct
(122) |
Nov
(18) |
Dec
(27) |
2014 |
Jan
(58) |
Feb
(25) |
Mar
(49) |
Apr
(17) |
May
(29) |
Jun
(39) |
Jul
(53) |
Aug
(52) |
Sep
(35) |
Oct
(47) |
Nov
(110) |
Dec
(27) |
2015 |
Jan
(50) |
Feb
(93) |
Mar
(96) |
Apr
(30) |
May
(55) |
Jun
(83) |
Jul
(44) |
Aug
(8) |
Sep
(5) |
Oct
|
Nov
(1) |
Dec
(1) |
2016 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
(2) |
Jul
|
Aug
(3) |
Sep
(1) |
Oct
(3) |
Nov
|
Dec
|
2017 |
Jan
|
Feb
(5) |
Mar
|
Apr
|
May
|
Jun
|
Jul
(3) |
Aug
|
Sep
(7) |
Oct
|
Nov
|
Dec
|
2018 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(2) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
|
|
|
|
|
1
(4) |
2
(3) |
3
(12) |
4
(8) |
5
(10) |
6
(21) |
7
(25) |
8
(3) |
9
(3) |
10
(4) |
11
(6) |
12
(20) |
13
(32) |
14
(15) |
15
(4) |
16
(2) |
17
(4) |
18
(2) |
19
(3) |
20
(3) |
21
(7) |
22
(16) |
23
(2) |
24
(14) |
25
(11) |
26
(4) |
27
(2) |
28
(3) |
29
(5) |
30
(26) |
31
(18) |
|
|
|
|
|
Just got a new Mac, and went with Python 2.6 from python.org on OS X 10.5. My experience building Matplotlib was less than smooth, and I thought I'd pass along what eventually wound up working. To summarize: 1. Rolling your own libpng and freetype in /usr/local appears to lead to a lot of architecture mismatch heartache, even though the libs compile fine out of the box 2. The official recommendation at http://matplotlib.sourceforge.net/users/installing.html#build-osx doesn't work because OS X doesn't ship with wget and because the download URLs for zlib, libpng, and freetype are broken in matplotlib/release/osx 3. I had success by following the instructions at http://ipython.scipy.org/moin/Py4Science/InstallationOSX, but I had to change the build command to: env ARCHFLAGS='-arch i386' CFLAGS="-Os -arch i386" LDFLAGS="-Os -arch i386" python setup.py build The ARCHFLAGS suggestion was taken from http://www.nabble.com/Building-matplotlib-on-os-x-to24942879.html, which had a few other scary ideas that I didn't have the heart to try. This built (I think) an intel-only i386 (32 bit) Matplotlib, which is fine for my local use. If I can help debug a better build process, let me know; I can probably help test for the next week on this new machine. -Eric
Hi all, Has anybody been able to confirm this as a bug? The test script is attached to the tracker item: https://sourceforge.net/tracker/?func=detail&aid=2832896&group_id=80706&atid=560720 I did some digging to see if I could figure out how the image scale was being mangled. I had a hunch that it was due to some interaction between fixed-72-dpi code, rounding the number of pixels, and subsequent rescaling. However, the image scale still seems to be off even when the dpi setting is a multiple of 72. Mike On Aug 6, 2009, at 10:42 AM, Michael Fitzgerald wrote: > > I've added this to the sourceforge bug tracker, ID 2832896. > > Mike > > > On Aug 5, 2009, at 3:32 PM, Michael Fitzgerald wrote: > >> >> 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 output file shows a green 'X' at the common point between four pixels near the center of the raster image. The extent is chosen such that the coordinates refer to pixel centers. The PDF and EPS output files show a misalignment between the X and the pixel boundaries -- zoom in to see it clearly. Also, the topmost row and rightmost column appear truncated. >> >> I am using svn r7395. >> >> Thanks for the attention, >> Mike >> >> <test_image_offset.py> > >
Hi, I just noticed that some links in the axes_grid docs are broken, but I have no idea what is wrong. The broken links are those associated with the "plot" directive, i.e., links to its source code, hires.png and pdf. (The links in the Gallery are fine, only those in axes_grid docs). For example, the first plot in the overview page (http://matplotlib.sourceforge.net/mpl_toolkits/axes_grid/users/overview.html#axesgrid) has a link to it source file (which is incorrect) as http://matplotlib.sourceforge.net/mpl_toolkits/plot_directive/mpl_toolkits/axes_grid/figures/simple_axesgrid.py The correct link is http://matplotlib.sourceforge.net/plot_directive/mpl_toolkits/axes_grid/figures/simple_axesgrid.py Note that the wrong link has extra "mpl_toolkits" before "plot_directive". The relevant rest source for this plot is .. plot:: mpl_toolkits/axes_grid/figures/simple_axesgrid.py :include-source: I tried to change the path to "mpl_examples/axes_grid/simpl_axesgrid.py", but the links are still broken. Any idea how to fix this? Thanks in advance, -JJ
Hello Gael, Okay, I've updated the two files I modified here: http://sites.google.com/site/jacksankey/files/matplotlib.zip?attredirects=0 Sorry I can't figure out how to compile. I wish it was possible to have an SVN containing also the windows binaries. Too bad we all can't just run Linux. Anyway, I tested the pants off this using an imshow() color plot this morning, and it works well on windows XP/wxAgg. There are two things worth mentioning: - For some reason, the enter key does not generate an event for me. I've added "escape" as another possible keyboard stop event generator. - The backspace key causes the plot to undo a zoom. This confused me for an hour. Use delete! - I'm fairly certain the mouse numbers are different for windows. I can't make the middle mouse button do anything. If you don't wind up adding all these changes, in the very least for the upcoming release, can you please add "escape" to the list of keys that will exit the collection of data points? That would amount to changing one line in key_event() from elif key == 'enter' to elif key in ['escape', 'enter']: The third point above is the reason I looked into this in the first place; I couldn't stop collecting! :) Adding 'escape' would make ginput() functional enough. (I also use key = event.key.lower() to be safe.) Thanks! -Jack On Thu, Aug 13, 2009 at 1:45 PM, Gael Varoquaux < gae...@no...> wrote: > On Tue, Aug 11, 2009 at 07:53:29PM -0400, Jack Sankey wrote: > > Sorry for spamming, but I have another addition to > > BlockingMouseInput.add_click, that fixes the problem of the graphics > > jumping around while ginputting. This makes it much easier to zoom in > on > > an imshow() plot and click a bunch of points, for example (it used to > zoom > > all the way out!): > > Hey Jack, > > If you cannot send an 'svn diff' of your changes, would you mind sending > the modified files all together? It is hard to review changes when > gathering them from various mails: so easy to forget a change. > > Cheers, > > Gaël >