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
(5) |
2
(10) |
3
(1) |
4
(11) |
5
(13) |
6
(15) |
7
(22) |
8
(12) |
9
(17) |
10
(1) |
11
|
12
(8) |
13
(6) |
14
(14) |
15
(11) |
16
(10) |
17
(1) |
18
(4) |
19
(5) |
20
(19) |
21
(15) |
22
(2) |
23
(4) |
24
(1) |
25
|
26
(20) |
27
(6) |
28
(18) |
29
(19) |
30
(12) |
|
Ludwig Schwardt wrote: > Possible solutions: > > - Use colors that are safe for printing and displaying (less saturated colors?). Avoid the extreme (255,0,0), (0,255,0), (0,0,255) colors, yes. For reasons which are fairly obvious given the physics, RGB devices do better displaying those than CMYK devices. Blues are especially poorly represented in CMYK media. OS X users can play around with these things using the ColorSync Utility.app program. Click on the "Profiles" button. On the left, there is a tree of profiles. Select "Generic RGB Profile". On the 3D plot, click the triangle in the upper left-hand corner and select "Hold for comparison". Now click the "Generic CMYK Profile". This shows a CMYK color gamut and an RGB color gamut in Lab space. The intersection of these two is the "safe region" where the colors on your screen can be represented in print. Of course, that is only if the printer driver knows about both profiles. > - Use Lab color, which is absolute. This is cumbersome, and RGB is > much more commonplace and well-understood in plotting packages, > including Matlab. Yeah, that's probably not too practical. > - Associate a generic ICC profile with the mpl plot, to attach > absolute color values to the RGB values in the plot in a consistent > way. Maybe this is the default in many graphics file formats and > therefore redundant, or maybe it does make a difference specifying it > explicitly, I'm not sure. It might be reasonable to specify that matplotlib uses the W3C standard sRGB colorspace. It was meant to be good for representability on a wide variety of computer monitors. Some monitors may even be manufactured to match that standard. It is the default colorspace for SVG and PNG. It misses a fair chunk of most the usual CMYK space in the greens and cyans, though. Adobe RGB (1998) would be better for print, but that "wastes" a lot of space on greens that most monitors can't represent. Some journals require figures in Adobe RGB (1998). Really implementing this still requires one to apply calibrated ICC profiles of your viewing device and potential output devices, but it does standardize the files matplotlib outputs. I have some code that wraps the lcms library for applying ICC profiles to numpy arrays. Those who saw my lightning talk at SciPy '07 saw an app I had for showing colormaps in perceptual colorspaces like Lab and with transformations to simulate colorblindness. I'm snowed under work next week, but after that I'll try to clean it up for doing soft-proofs of images. Maybe I'll even get to integrating that soft-proofing with matplotlib such that every interactive plot can be displayed as if it were printed (or seen through my colorblind eyes). -- Robert Kern "I have come to believe that the whole world is an enigma, a harmless enigma that is made terrible by our own mad attempt to interpret it as though it had an underlying truth." -- Umberto Eco
Eric Firing wrote: > Yes, I understand, and I am sorry--but I hope it is one-time pain to > avoid continuing pin-pricks. If svn ignored trailing whitespace, then > there would be no problem; I could continue to use an editor that > removes it, and you could continue to use editors that gratuitously add > it, and usually it would make no difference. This is not the case, > however. As it is now, if a file comes into svn without any trailing > whitespace, and one of you loads it up, maybe makes a trivial change > after running your cursor through it, and saves it--it will end up with > a big changeset--lots of trailing whitespace. This is just plain bad. > All downside, no upside. > FWIW, you can get svn diff to ignore (trailing whitespace) -- by not using svn diff. svn diff --diff-cmd diff -x -uw path/to/file.py With apologies for previously hijacking your thread into an emacs configure-a-thon, :) Andrew