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 Jo

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: &quo

Re: [Matplotlib-users] Graphing in an existing PyGTK window

2013-08-19 Thread Sudheer Joseph
Hi Paul,     If you start python like below with qt console. You will get plots with out controls etc. You can right click on plots and save it as png. Else from command prompt as pdf as you wish. ipython qtconsole  --colors=linux  --pylab=inline   >

[Matplotlib-users] modification to m.scatter

2014-12-15 Thread Sudheer Joseph
. http://earthpy.org/earthpy-basemap-amazon.html *** Sudheer Joseph Indian National Centre for Ocean Information Services Ministry of Earth Sciences, Govt. of India POST BOX NO: 21, IDA Jeedeemetla P.O. Via Pragathi Nagar,Kukatpally

Re: [Matplotlib-users] modification to m.scatter

2014-12-16 Thread Sudheer Joseph
, Sudheer On Tue, 16/12/14, Benjamin Root wrote: Subject: Re: [Matplotlib-users] modification to m.scatter To: "Sudheer Joseph" Cc: "Matplotlib Users" Date: Tuesday, 16 December, 2014, 2:48 PM Can you please include an SSC

Re: [Matplotlib-users] modification to m.scatter

2014-12-17 Thread Sudheer Joseph
(projection='robin',lon_0=0,resolution='c') x, y = m(df_data['lonm'][0:50], df_data['latm'][0:50]) On Wed, 17/12/14, Benjamin Root wrote: Subject: Re: [Matplotlib-users] modification to m.scatter To: "Su

[Matplotlib-users] Corr plot in subplot

2015-03-13 Thread Sudheer Joseph
= fig.add_subplot(222) ax3 = fig.add_subplot(223) ax4 = fig.add_subplot(224) *** Sudheer Joseph Indian National Centre for Ocean Information Services Ministry of Earth Sciences, Govt. of India POST BOX NO: 21, IDA Jeedeemetla P.O. Via Pragathi

Re: [Matplotlib-users] Corr plot in subplot

2015-03-14 Thread Sudheer Joseph
-- On Fri, 13/3/15, Paul Hobson wrote: Subject: Re: [Matplotlib-users] Corr plot in subplot To: "Sudheer Joseph" Cc: "Matplotlib Users" Date: Friday, 13 March, 2015, 6:04 PM What's the function signature of corrplot.CorrPlot? Hopefully you can pass an Axes

Re: [Matplotlib-users] Corr plot in subplot

2015-03-14 Thread Sudheer Joseph
obson" Cc: "Sudheer Joseph" , "Matplotlib Users" Date: Friday, 13 March, 2015, 7:06 PM All the pandas plots that I've used take an axes keyword so try: c = corrplot.Corrplot(df, ax=ax1) or c = corrplot.Corrplot(df, axes=ax1) Do either of those work

Re: [Matplotlib-users] Corr plot in subplot

2015-03-14 Thread Sudheer Joseph
ax3 = fig.add_subplot(223);corrplot.Corrplot(df_jja,axes=ax3) TypeError: __init__() got an unexpected keyword argument 'axes' On Fri, 13/3/15, Adam Hughes wrote: Subject: Re: [Matplotlib-users] Corr plot in subplot To: "Paul Hobson"

Re: [Matplotlib-users] Corr plot in subplot

2015-03-17 Thread Sudheer Joseph
. On Fri, 13/3/15, Adam Hughes wrote: Subject: Re: [Matplotlib-users] Corr plot in subplot To: "Paul Hobson" Cc: "Sudheer Joseph" , "Matplotlib Users" Date: Friday, 13 March, 2015, 7:06 PM All the pandas plo

Re: [Matplotlib-users] Corr plot in subplot

2015-03-17 Thread Sudheer Joseph
Hellow Paul, I thought I should show an example plot which shows the idea of what I was asking about corrplot. Below link shows it. http://matplotlib.org/examples/pylab_examples/multi_image.html On Tue, 17/3/15, Sudheer Joseph wrote

Re: [Matplotlib-users] subplot layout

2016-04-25 Thread Sudheer Joseph
*** Sudheer Joseph Indian National Centre for Ocean Information Services Ministry of Earth Sciences, Govt. of India POST BOX NO: 21, IDA Jeedeemetla P.O. Via Pragathi Nagar,Kukatpally, Hyderabad; Pin:5000 55 Tel:+91-40-23886047(O),Fax:+91-40

Re: [Matplotlib-users] subplot layout

2016-04-25 Thread Sudheer Joseph
maps import numpy as np import matplotlib.pyplot as plt from matplotlib import cm import matplotlib as mpl from colorspacious import cspace_converter *********** Sudheer Joseph Indian National Centre for Ocean Information Services Ministry of E

Re: [Matplotlib-users] Matplotlib Figure margin transparancy

2016-08-05 Thread Sudheer Joseph
Dear Expert, Recently after up-gradation of matplotlib and ubuntu 16.04 I am getting transparent figure axis when using the "linux color scheme" option in ipython qtconsole. May I know if there is a way to fix this issue?. I wanted to keep black screen as it reduces eye strai

[Matplotlib-users] Fw: Matplotlib Figure margin transparancy

2016-08-09 Thread Sudheer Joseph
Hi, I have send below query to matplotlib user group recently but did not get posted so far. Can you please tell me is there is any thin wrong with the message? With best regards, Sudheer > > Dear Expert, > Recently after up-gradation of matplotlib and ubuntu 16.04 I > am > ge

[Matplotlib-users] plot control

2017-04-19 Thread Sudheer Joseph
r_diagram_options(*args, **kwargs)     177 optname = optname.lower()     178 if not optname in option: --> 179 raise ValueError('Unrecognized option: ' + optname)     180 else:     181 # Replace option value with that from arguments ValueError: U

Re: [Matplotlib-users] plot control

2017-04-22 Thread Sudheer Joseph
Thank you,  I did contact them, but it appears he did not understand, the issue I was telling him. Then I thought it is my lack of expertise which made it not work.Sudheer  *** Sudheer Joseph Indian National Centre for

[Matplotlib-users] matplotlib-1.0.1 with Python 2.7.2 build error

2011-10-07 Thread Sudheer Joseph
RBR[34] .__start ER: The return code is 8. ld: 0711-317 ERROR: Undefined symbol: .main -- with best regards Sudheer ** Sudheer Joseph Scientist INDIAN NATIONAL CENTRE FOR OCEAN INFORMATION SERVICES (INC

[Matplotlib-users] cross correlation

2013-02-07 Thread Sudheer Joseph
results in a netcdf file for further use. ie the correlation, lags and significance if possible. Is there a way to get the corr and lags from the axis.xcorr ?? any help in this matter will be greatly  appreciated.  Sudheer   *** Sudheer

Re: [Matplotlib-users] cross correlation

2013-02-08 Thread Sudheer Joseph
#x27;, lw=2) ax2 = fig.add_subplot(212, sharex=ax1) ax2.acorr(x, usevlines=True, normed=True, maxlags=50, lw=2) ax2.grid(True) ax2.axhline(0, color='black', lw=2) plt.show()   From: Paul Hobson To: Sudheer Joseph Cc: "matplotlib-users@lists.sourceforge.net" Sent: Thursday,

Re: [Matplotlib-users] cross correlation

2013-02-20 Thread Sudheer Joseph
help. ftp ftpser.incois.gov.in user temp password incoistemp cd /home0/temp/comp bin mget qu_test.nc.gz gunzip qu_test.nc.gz   ******* Sudheer Joseph Indian National Centre for Ocean Information Services Ministry of Earth Sciences, Govt. of India P

Re: [Matplotlib-users] cross correlation

2013-02-21 Thread Sudheer Joseph
Thank you Pierre,                               I will test the other options. I did not know the  number limitation in case of plt.xcorr. Thanks a lot with best regards, Sudheer *** Sudheer Joseph Indian National Centre for Ocean

Re: [Matplotlib-users] cross correlation

2013-02-27 Thread Sudheer Joseph
                       *** Sudheer Joseph Indian National Centre for Ocean Information Services Ministry of Earth Sciences, Govt. of India POST BOX NO: 21, IDA Jeedeemetla P.O. Via Pragathi Nagar,Kukatpally, Hyderabad; Pin:5000 55 Tel:+91-40-23886047(O),Fax:+91-40-23895011(O), Tel:+91-40-23044600(R),Tel:+91-40

Re: [Matplotlib-users] cross correlation

2013-03-01 Thread Sudheer Joseph
Thank you Pierre.  with best regards, Sudheer From: Pierre Haessig To: Cc: "matplotlib-users@lists.sourceforge.net" Sent: Thursday, 28 February 2013 7:15 PM Subject: Re: [Matplotlib-users] cross correlation Hi, Le 27/02/2013 10:01, Sudheer Joseph a écrit : > I was checking

[Matplotlib-users] depth longitude plot

2013-03-01 Thread Sudheer Joseph
np.where(lat==0.5) ntemp=temp[:,lat0,lonmin:lonmax] basically I wanted to make a plot plt.plot(nlon,depth,ntemp) Please help. with best regards, Sudheer *********** Sudheer Joseph Indian National Centre for Ocean Information Services Ministry of E

Re: [Matplotlib-users] depth longitude plot

2013-03-02 Thread Sudheer Joseph
Tank you very much for both solutions Phil, with best regards, Sudheer  *** Sudheer Joseph Indian National Centre for Ocean Information Services Ministry of Earth Sciences, Govt. of India POST BOX NO: 21, IDA Jeedeemetla P.O. Via

Re: [Matplotlib-users] depth longitude plot

2013-03-04 Thread Sudheer Joseph
Thank you,                        I just posted this question in numpy lists thinking that it is possible after regriding the data to new axes.  Thanks for the help. with best regards, Sudheer   *** Sudheer Joseph Indian National Centre

Re: [Matplotlib-users] depth longitude plot

2013-03-04 Thread Sudheer Joseph
', fontsize=18) cb = plt.colorbar(cs1,pad=.02) #(location='right')#,size="5%", pad='2%') plt.gca().invert_yaxis() plt.show()   *** Sudheer Joseph Indian National Centre for Ocean Information Services

Re: [Matplotlib-users] depth longitude plot

2013-03-05 Thread Sudheer Joseph
Thank you, > >1) There is a wide gap between label and the contours ie  it appears like >--     2.4      . is there a way to reduce this gap? Try inline=False for the clabel call, but that might over-do it.   I tried this but it totally removes the space, the inline_space=n do not app

[Matplotlib-users] matplotlib on aix5.3

2013-03-08 Thread Sudheer Joseph
iet option to obtain more information.   ******* Sudheer Joseph Indian National Centre for Ocean Information Services Ministry of Earth Sciences, Govt. of India POST BOX NO: 21, IDA Jeedeemetla P.O. Via Pragathi Nagar,Kukatpally, Hyderabad; P

[Matplotlib-users] matplotlib multiple windows comparison

2013-03-11 Thread Sudheer Joseph
]: matplotlib.get_backend() Out[3]: 'WXAgg' In [4]: matplotlib.__version__ Out[4]: '1.2.0' with best regards, Sudheer ******* Sudheer Joseph Indian National Centre for Ocean Information Services Ministry of Earth Sciences,

Re: [Matplotlib-users] matplotlib multiple windows comparison

2013-03-12 Thread Sudheer Joseph
, Sudheer *** Sudheer Joseph Indian National Centre for Ocean Information Services Ministry of Earth Sciences, Govt. of India POST BOX NO: 21, IDA Jeedeemetla P.O. Via Pragathi Nagar,Kukatpally, Hyderabad; Pin:5000 55 Tel:+91-40-23886047(O

Re: [Matplotlib-users] matplotlib multiple windows comparison

2013-03-12 Thread Sudheer Joseph
Thank You Phil,                                   It did it correctly. TkAgg is good with interactive plotting. with best regards, Sudheer From:Phil Elson To: Sudheer Joseph Cc: "matplotlib-users@lists.sourceforge.net" Sent: Tuesday, 12 March 2013 7:53 PM Subject: Re: [Matplo

Re: [Matplotlib-users] windrose

2013-03-19 Thread Sudheer Joseph
that I can try some thing different. However when I see it in Yahoo there is no issues though.. with best regards, Sudheer   *** Sudheer Joseph Indian National Centre for Ocean Information Services Ministry of Earth Sciences, Govt. of India

[Matplotlib-users] windrose

2013-04-03 Thread Sudheer Joseph
') set_legend(ax) #Another stacked histogram representation, not normed, with bins limits ##print ax._info plt.show()   ******* Sudheer Joseph Indian National Centre for Ocean Information Services Ministry of Earth Sciences, Govt. of India P

Re: [Matplotlib-users] windrose

2013-04-04 Thread Sudheer Joseph
Thank you Scott, Some how I am not getting the trick of the  rect = [0.1, 0.1, 0.8, 0.8] I tried  rect1= [0.1,0.1,.4,.4] and rect2=[.4,.4,.8,.8]  but did not work Sudheer   *** Sudheer Joseph Indian National Centre for Ocean

Re: [Matplotlib-users] windrose

2013-04-05 Thread Sudheer Joseph
Thank You Scott,                 I mistook the values  I assumed .1 to .8 as the total x size and expected half of it should provide me 2 half boxes. thanks a lot for clarification. with best regards, Sudheer   *** Sudheer Joseph Indian

[Matplotlib-users] legend and text

2013-05-24 Thread Sudheer Joseph
l(xlab,fontsize=12) ax.text(np.mean(x),20,"N-SAMPLES: "+str(npts)) ax2 = ax.twinx() csm1=ax2.plot(x, yc, 'r-') ax2.set_ylabel('CUM % DATA',fontsize=12) p.legend((fc1, csm1), ('histogram', 'cumulative')) for tick in ax.xaxis.get_major_ticks():                 tick.label.set_fontsize(14)

[Matplotlib-users] font for errorbar plot

2013-05-30 Thread Sudheer Joseph
10) for tick in ax.xaxis.get_major_ticks():     tick.label.set_fontsize(14)   ******* Sudheer Joseph Indian National Centre for Ocean Information Services Ministry of Earth Sciences, Govt. of India POST BOX NO: 21, IDA Jeedeemetla P.O. Via Pragathi

Re: [Matplotlib-users] font for errorbar plot

2013-05-31 Thread Sudheer Joseph
Thank you both Paul and Eric the kind helping hands, Sudheer-- Get 100% visibility into Java/.NET code with AppDynamics Lite It's a free troubleshooting tool designed for production Get down to code-level detail for bottlen

[Matplotlib-users] time series

2013-06-05 Thread Sudheer Joseph
a = np.cumprod(1 + np.random.normal(0, 1, 300)/100) series = ts.time_series(data,                        start_date=ts.Date(freq='M', year=1982, month=1)) fig = tpl.tsfigure() fsp = fig.add_tsplot(111) fsp.tsplot(series, '-', mov_average_expw(series, 40), 'r--') plt.sh

Re: [Matplotlib-users] time series

2013-06-05 Thread Sudheer Joseph
Thank you Verymuch for quick help,Paul. with best regards, Sudheer From: Paul Hobson >To: Sudheer Joseph >Cc: "matplotlib-users@lists.sourceforge.net" > >Sent: Wednesday, 5 June 2013 9:57 PM >Subject: Re: [Matplotlib-users] time series > > > >On Wed, J

[Matplotlib-users] pandas ts.plot object

2013-06-06 Thread Sudheer Joseph
Dear members,    Is there a way to add error bar to pandas ts.plot object?. with best regards, Sudheer *** Sudheer Joseph Indian National Centre for Ocean Information Services Ministry of Earth Sciences, Govt. of India

Re: [Matplotlib-users] time axis format

2013-06-10 Thread Sudheer Joseph
Thank you, So there is no way to get J F M A etc with out reducing font size? We often need to make presentation in front of senior people who insist for bigger fonts. With best regards, Sudheer-- This SF.net email is spo

Re: [Matplotlib-users] time axis format

2013-06-10 Thread Sudheer Joseph
3 6:11 AM >Subject: Re: [Matplotlib-users] time axis format > > >On 2013/06/10 2:08 PM, Sudheer Joseph wrote: >> >> Thank you, >> So there is no way to get J F M A etc with out reducing font size? We >> often need to make presentation in front of senior people w

Re: [Matplotlib-users] time axis format

2013-06-10 Thread Sudheer Joseph
Re: [Matplotlib-users] time axis format > > > > > > >On Mon, Jun 10, 2013 at 8:08 PM, Sudheer Joseph >wrote: > > >>Thank you, >>So there is no way to get J F M A etc with out reducing font size?   > >I bet there a number of ways.  Offhand I don't know the on

Re: [Matplotlib-users] time axis format

2013-06-10 Thread Sudheer Joseph
Got a solution as below p.setp(ax.xaxis.get_minorticklabels(), rotation=90 ) but still to understand how to get single letter from month name! with best regards, Sudheer - Original Message - > From: Sudheer Joseph > To: Eric Firing ; > "matplotlib-users@lists.s

Re: [Matplotlib-users] time axis format

2013-06-11 Thread Sudheer Joseph
Thank you very much Eric for your valuable suggestions and explanations, now I could follow what exactly was wrong with my way of doing it, I got the result correctly. thanks a lot with best regards, Sudheer - Original Message - > From: Eric Firing > To: Sudheer Joseph

[Matplotlib-users] savefig

2013-06-12 Thread Sudheer Joseph
s after quitting and restarting in normal mode each time I want to save? ipython qtconsole --pylab=inline In [93]: ts.plot() Out[93]: ******* Sudheer Joseph Indian National Centre for Ocean Information Services Ministry of Earth Sciences, Govt.

Re: [Matplotlib-users] savefig

2013-06-13 Thread Sudheer Joseph
Thank you, I don't see a way other than starting in normal mode as the moment I type plot command it get displayed and I don't need to do a show command. With best regards sudheer-- This SF.net email is sponsored by Windo

Re: [Matplotlib-users] savefig

2013-06-13 Thread Sudheer Joseph
Thank you Roban, Your that trick worked, if I keep ts.plot(), savefig('ts.pdf') both on same line it works! with best regards Sudheer  ******* Sudheer Joseph Indian National Centre for Ocean Informatio

Re: [Matplotlib-users] savefig

2013-06-13 Thread Sudheer Joseph
Thank you, I don't see a way other than starting in normal mode as the moment I type plot command it get displayed and I don't need to do a show command. With best regards sudheer-- This SF.net email is sponsored by Windo

Re: [Matplotlib-users] savefig

2013-06-15 Thread Sudheer Joseph
Thank you, This is some thing new, which I learned. with best regards, Sudheer   *** Sudheer Joseph Indian National Centre for Ocean Information Services Ministry of Earth Sciences, Govt. of India POST BOX NO: 21, IDA

[Matplotlib-users] ipython with pylab inline and normal

2013-06-27 Thread Sudheer Joseph
/heeadhkf9u2czns/ipython_cmdline.png https://www.dropbox.com/s/5hsm6yver152h11/inline_mode.png  with best regards,  Sudheer    ***  Sudheer Joseph  Indian National Centre for Ocean Information Services  Ministry of Earth Sciences, Govt. of

[Matplotlib-users] Hovemuller Diagram

2013-07-11 Thread Sudheer Joseph
  *** Sudheer Joseph Indian National Centre for Ocean Information Services Ministry of Earth Sciences, Govt. of India POST BOX NO: 21, IDA Jeedeemetla P.O. Via Pragathi Nagar,Kukatpally, Hyderabad; Pin:5000 55 Tel:+91-40-23886047(O),Fax:+91-40-23895011(O), Tel:+91-40-23044600(R),Tel:+91-40

Re: [Matplotlib-users] Hovemuller Diagram

2013-07-11 Thread Sudheer Joseph
with out additional installations using the features of basemap package. with best regards, Sudheer   *** Sudheer Joseph Indian National Centre for Ocean Information Services Ministry of Earth Sciences, Govt. of India POST BOX NO: 21, IDA

Re: [Matplotlib-users] Hovemuller Diagram

2013-07-12 Thread Sudheer Joseph
Thank you Phil,    Which repository I need to add to source list which allow me to install iris with apt-get install python-iris. I do not have it in my default lists. with best regards, Sudheer *** Sudheer Joseph

Re: [Matplotlib-users] Hovemuller Diagram

2013-07-12 Thread Sudheer Joseph
Hi, I did not understand 1d mentioned by you? for a diagram like this 2D is must as it need longitude /latitude and also time with best regards, Sudheer From: Andrew Dawson To: Phil Elson >Cc: Sudheer Joseph ; >"matplotlib-users@lists.sourceforge.net" > >Sent: Fri

Re: [Matplotlib-users] Hovemuller Diagram

2013-07-12 Thread Sudheer Joseph
Finally I got installed by following link below http://osgeo-org.1560.x6.nabble.com/Iris-draft-installer-td5061171.html   *** Sudheer Joseph Indian National Centre for Ocean Information Services Ministry of Earth Sciences, Govt. of