Re: [Matplotlib-users] Hovemuller Diagram

2013-07-13 Thread Sudheer Joseph
Hi, Is there a way to make the below as a hovemuler diagram which I tired but could not succeed  import pandas as pd dates = pd.date_range('20130101',periods=30) df=pd.DataFrame(np.random.randn(30,5),index=dates) From: Andrew Dawson To: Sudheer Joseph >Cc: "Matplotlib-users@lists.sourcefo

Re: [Matplotlib-users] Hovemuller Diagram

2013-07-13 Thread Sudheer Joseph
Thank Daswson  & Sterling,    Got it, you meant the data should not have date and longitude against each grid point instead should have only 2 vectors rather than grid. with best regards, Sudheer *** Sudheer Joseph In

Re: [Matplotlib-users] Hovemuller Diagram

2013-07-13 Thread Andrew Dawson
I meant the coordinates, so one representing latitude or longitude and one representing time (filled with datetime objects), should be 1d. This only applies if your coordinate actually contains datetime objects, if not then coordinates can be 2d as the documentation says. On 13 Jul 2013 02:22, "Sud