Screenshot instructions:
Windows
Mac
Red Hat Linux
Ubuntu
Click URL instructions:
Right-click on ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)
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
(151) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
1
(10) |
2
(12) |
3
(6) |
4
(5) |
5
(6) |
6
(2) |
7
(1) |
8
(20) |
9
(11) |
10
(3) |
11
(6) |
12
(3) |
13
(1) |
14
(2) |
15
(1) |
16
(5) |
17
(9) |
18
(17) |
19
(7) |
20
|
21
(1) |
22
(1) |
23
(1) |
24
|
25
(4) |
26
(4) |
27
|
28
(2) |
29
(2) |
30
(6) |
31
(5) |
|
|
|
From: John Hunter <jdhunter@ac...> - 2004-03-26 13:50:24
|
>>>>> "Steve" == Steve Chaplin <stevech1097@...> writes: Steve> John, I'm having a problem with gridlines. I set axes.grid Steve> : True in my .matplotlibrc file Steve> But when I run examples/embedding_in_gtk.py and Steve> examples/simple_plot.py there are no gridlines. Oops, this was just an oversight. In matplotlib.axes.Axes.cla, change self._gridOn = False to self._gridOn = rcParams['axes.grid'] Should help; thanks for letting me know, JDH |
From: Steve Chaplin <stevech1097@ya...> - 2004-03-26 12:41:47
|
John, I'm having a problem with gridlines. I set axes.grid : True in my .matplotlibrc file But when I run examples/embedding_in_gtk.py and examples/simple_plot.py there are no gridlines. Regards, Steve |
From: John Hunter <jdhunter@ac...> - 2004-03-26 03:28:02
|
>>>>> "paulo" == paulo <pherrera@...> writes: paulo> I am using the scatter plot of Matplotlib to plot the paulo> position of each particle. That works great, but when I try paulo> to assign different colors to each dot according to their paulo> concentration I find some problems. Although there is a big paulo> range of concentrations (colors) I can only see two in the paulo> plot. Is it possible to define more intervals to assign the paulo> colors? I think I did not understand the right way to paulo> define the c array intensities when I use the command: paulo> scatter(self, x, y, s=None, c) How should I generate that paulo> array? I looked at the example but I couldn't figure it paulo> out. Hi Paulo, It would help to see some code to let you know why your current approach isn't working. For now, all I can say is that c should be a len(x) Numeric array of concentrations. It might help for you to do hist(c, 100) to look at the distribution of concentrations. If the distribution is bimodal and strongly peaked, this may explain why you only see two colors. As for your question about defining more colors, the default is to use a colormap of 1000 colors, which should be an ample number to see a range unless something funny is going on with your c array. When you post some code, also post the first few entries of c, eg c[:10]. JDH |
From: John Hunter <jdhunter@ac...> - 2004-03-26 03:22:07
|
>>>>> "Kirk" == Kirk Lamont <k.lamont@...> writes: Kirk> Hey. We are using Matplotlib with Python and C to create Kirk> run time graphs. However, we are having trouble figuring Kirk> out how to get the axes to show up in scientific notation. Kirk> If anyone have some info it would be very much appreciated. Kirk> Thanks If I understand you correctly, you want to use notation like 1.0e-6 on the x and/or y axis tick labels. Is this correct? Having more automated tick labelers is something that has been discussed and will be added in the not-too-distant future. In the mean time you can control them directly ax = subplot(111) plot([1,2,3]) xticks = ax.get_xticks() labels = [ '%1.0e'%val for val in xticks ] ax.set_xticklabels(labels) or you may want to define your own ticks xticks = [1e-6, 2e-6, 3e-6, 4e-6] ax.set_xticks(xticks) labels = [ '%1.0e'%val for val in xticks ] ax.set_xticklabels(labels) Hope this helps, John Hunter |