Re: [Matplotlib-users] question on usage of DateFormatter

2008-05-28 Thread John Hunter
On Wed, May 28, 2008 at 10:17 AM, Margherita Vittone wiersma <[EMAIL PROTECTED]> wrote: > thank for your reply; i made a typo when i cut and paste my example which was > longer and i just trimmed it down to email it. So even with the correct > formatter defined, > on the plot i only see 00:00:00

Re: [Matplotlib-users] question on usage of DateFormatter

2008-05-28 Thread Margherita Vittone wiersma
Hello, thank for your reply; i made a typo when i cut and paste my example which was longer and i just trimmed it down to email it. So even with the correct formatter defined, on the plot i only see 00:00:00 for the time portion of the label; i am wondering if it could related to the version of m

Re: [Matplotlib-users] question on usage of DateFormatter

2008-05-27 Thread C M
On Tue, May 27, 2008 at 5:08 PM, John Hunter <[EMAIL PROTECTED]> wrote: > On Tue, May 27, 2008 at 4:03 PM, C M <[EMAIL PROTECTED]> wrote: > >> John, do you know why the times are coming out as 00:00:00 in your >> example (and mine when I tried it), even though the actual times are >> specified? > >

Re: [Matplotlib-users] question on usage of DateFormatter

2008-05-27 Thread John Hunter
On Tue, May 27, 2008 at 4:03 PM, C M <[EMAIL PROTECTED]> wrote: > John, do you know why the times are coming out as 00:00:00 in your > example (and mine when I tried it), even though the actual times are > specified? Yes, these are the locations of the ticks, not the data points. The default tic

Re: [Matplotlib-users] question on usage of DateFormatter

2008-05-27 Thread John Hunter
On Tue, May 27, 2008 at 2:14 PM, Margherita Vittone wiersma <[EMAIL PROTECTED]> wrote: > id_list=[1,2,3,4,5,6] > str_dates=['2006-07-29 11:01:01','2006-07-29 10:02:03','2006-07-31 00:00:00', > '2006-08-01 10:11:12','2006-08-02 09:09:09','2006-08-03 08:08:08'] > > id_dates=datestr2num(str_

[Matplotlib-users] question on usage of DateFormatter

2008-05-27 Thread Margherita Vittone wiersma
Hello, i am trying to plot information which will have on the x a timestamp imformation; even if i specify the formatter i want(see code below) , it seems to be ingnored in the labels, meaning, i don't see the time portion of it, just the date. The code is very simple since i am just testing; tha