You can subscribe to this list here.
2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(115) |
Aug
(120) |
Sep
(137) |
Oct
(170) |
Nov
(461) |
Dec
(263) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2008 |
Jan
(120) |
Feb
(74) |
Mar
(35) |
Apr
(74) |
May
(245) |
Jun
(356) |
Jul
(240) |
Aug
(115) |
Sep
(78) |
Oct
(225) |
Nov
(98) |
Dec
(271) |
2009 |
Jan
(132) |
Feb
(84) |
Mar
(74) |
Apr
(56) |
May
(90) |
Jun
(79) |
Jul
(83) |
Aug
(296) |
Sep
(214) |
Oct
(76) |
Nov
(82) |
Dec
(66) |
2010 |
Jan
(46) |
Feb
(58) |
Mar
(51) |
Apr
(77) |
May
(58) |
Jun
(126) |
Jul
(128) |
Aug
(64) |
Sep
(50) |
Oct
(44) |
Nov
(48) |
Dec
(54) |
2011 |
Jan
(68) |
Feb
(52) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
2018 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
1
(4) |
2
|
3
(2) |
4
(3) |
5
(5) |
6
(1) |
7
(3) |
8
|
9
(3) |
10
(3) |
11
(6) |
12
(2) |
13
(4) |
14
(1) |
15
(2) |
16
(1) |
17
(6) |
18
(8) |
19
|
20
(1) |
21
|
22
|
23
(3) |
24
(2) |
25
(2) |
26
(1) |
27
(2) |
28
(7) |
29
(2) |
30
(4) |
|
|
|
|
Revision: 6065 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6065&view=rev Author: ryanmay Date: 2008年09月04日 19:56:37 +0000 (2008年9月04日) Log Message: ----------- Document the linestyles keyword argument to contour. Modified Paths: -------------- trunk/matplotlib/lib/matplotlib/contour.py Modified: trunk/matplotlib/lib/matplotlib/contour.py =================================================================== --- trunk/matplotlib/lib/matplotlib/contour.py 2008年09月04日 19:52:42 UTC (rev 6064) +++ trunk/matplotlib/lib/matplotlib/contour.py 2008年09月04日 19:56:37 UTC (rev 6065) @@ -998,13 +998,26 @@ *linewidths*: [ None | number | tuple of numbers ] If *linewidths* is *None*, the default width in - ``lines.linewidth`` in ``matplotlibrc`` is used + ``lines.linewidth`` in ``matplotlibrc`` is used. If a number, all levels will be plotted with this linewidth. If a tuple, different levels will be plotted with different linewidths in the order specified + *linestyles*: [None | 'solid' | 'dashed' | 'dashdot' | 'dotted' ] + If *linestyles* is *None*, the 'solid' is used. + + *linestyles* can also be an iterable of the above strings + specifying a set of linestyles to be used. If this + iterable is shorter than the number of contour levels + it will be repeated as necessary. + + If contour is using a monochrome colormap and the contour + level is less than 0, then the linestyle specified + in ``contour.negative_linestyle`` in ``matplotlibrc`` + will be used. + contourf-only keyword arguments: *antialiased*: [ True | False ] This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 6064 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6064&view=rev Author: ryanmay Date: 2008年09月04日 19:52:42 +0000 (2008年9月04日) Log Message: ----------- Fix typo (iterator()->iterable()) for setting linestyles in Collection class. Modified Paths: -------------- trunk/matplotlib/lib/matplotlib/collections.py Modified: trunk/matplotlib/lib/matplotlib/collections.py =================================================================== --- trunk/matplotlib/lib/matplotlib/collections.py 2008年09月04日 18:29:28 UTC (rev 6063) +++ trunk/matplotlib/lib/matplotlib/collections.py 2008年09月04日 19:52:42 UTC (rev 6064) @@ -284,7 +284,7 @@ dashes.append(dashd[cbook.ls_mapper[x]]) else: raise ValueError() - elif cbook.iterator(x) and len(x) == 2: + elif cbook.iterable(x) and len(x) == 2: dashes.append(x) else: raise ValueError() This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 6063 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6063&view=rev Author: ryanmay Date: 2008年09月04日 18:29:28 +0000 (2008年9月04日) Log Message: ----------- Correct return in docstring for boxplot. Modified Paths: -------------- trunk/matplotlib/lib/matplotlib/axes.py Modified: trunk/matplotlib/lib/matplotlib/axes.py =================================================================== --- trunk/matplotlib/lib/matplotlib/axes.py 2008年09月03日 19:58:01 UTC (rev 6062) +++ trunk/matplotlib/lib/matplotlib/axes.py 2008年09月04日 18:29:28 UTC (rev 6063) @@ -4504,8 +4504,9 @@ *x* is an array or a sequence of vectors. - Returns a list of the :class:`matplotlib.lines.Line2D` - instances added. + Returns a dictionary mapping each component of the boxplot + to a list of the :class:`matplotlib.lines.Line2D` + instances created. **Example:** This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.