[Matplotlib-users] another problem with subplot...

2006-11-02 Thread humufr
and the same question: this behavior is normal? fig1 = figure() ax1 = subplot(121) xlim([0,10]) ax2 = subplot(122,sharey=ax1) yticks([]) I would like to hide the ticks label for only one subplot (the one who share the axes) but I would like to have the ticklabels for the global plot, ie on the

Re: [Matplotlib-users] Drawing horizontal bar charts

2006-11-02 Thread John Hunter
> "Asrarahmed" == Asrarahmed Kadri <[EMAIL PROTECTED]> writes: Asrarahmed> Thank you so much. One more thing: How can save teh Asrarahmed> graph in a file and then embed it in a Tkinter canvas Asrarahmed> widget,...?? you don't need to first save the graph -- though you can. You

Re: [Matplotlib-users] Drawing horizontal bar charts

2006-11-02 Thread Asrarahmed Kadri
Thank you so much. One more thing: How can save teh graph in a file and then embed it in a Tkinter canvas widget,...?? TIA (Thanks in anticipation).   REgards, Asrarahmed  On 11/2/06, John Hunter <[EMAIL PROTECTED]> wrote: > "Asrarahmed" == Asrarahmed Kadri < [EMAIL PROTECTED]> writes:   Asrara

Re: [Matplotlib-users] standardizing x-axes in hist

2006-11-02 Thread Antonio Gonzalez
When building your histograms, define your bins by means of either 'arange' (to set the same bin width) or 'linspace' (to set equally-spaced bin limits). Eg, if all your histograms will have an x-axis ranging from 0 to 100, and you want the data in each of them plotted into 12 equally-spaced bins,

Re: [Matplotlib-users] Drawing horizontal bar charts

2006-11-02 Thread John Hunter
> "Asrarahmed" == Asrarahmed Kadri <[EMAIL PROTECTED]> writes: Asrarahmed> Hello, Can you help with some examples for drawing bar Asrarahmed> charts in matplotlib..>>/// Did you see my previous email responding to your "a query" post, where I pointed you to two examples? Here is anot

[Matplotlib-users] Drawing horizontal bar charts

2006-11-02 Thread Asrarahmed Kadri
Hello,   Can you help with some examples for drawing bar charts in matplotlib..>>///   Best Regards, Asrarahmed-- To HIM you shall return. - Using Tomcat but need to do more? Need to support web services, security? Get stuff d

Re: [Matplotlib-users] subplot_adjust bug?

2006-11-02 Thread humufr
Le Jeudi 2 Novembre 2006 09:19, John Hunter a écrit : > > "John" == John Hunter <[EMAIL PROTECTED]> writes: > > John> I need to tweak the overlap function to take an optional arg > John> so that endpoint overlap is OK. > > OK, this is now fixed in svn. Thanks for the report. The solut

Re: [Matplotlib-users] standardizing x-axes in hist

2006-11-02 Thread Christopher Fonnesbeck
On Nov 1, 2006, at 2:15 PM, John Hunter wrote: >> "listservs" == listservs <[EMAIL PROTECTED]> writes: > > listservs> I am trying to produce a series of histograms of > listservs> related data, for which I want the ranges and scales of > listservs> the x-axes to be the same. How

Re: [Matplotlib-users] subplot_adjust bug?

2006-11-02 Thread John Hunter
> "John" == John Hunter <[EMAIL PROTECTED]> writes: John> I need to tweak the overlap function to take an optional arg John> so that endpoint overlap is OK. OK, this is now fixed in svn. Thanks for the report. JDH

Re: [Matplotlib-users] subplot_adjust bug?

2006-11-02 Thread John Hunter
> "humufr" == humufr <[EMAIL PROTECTED]> writes: humufr> Hi, I have a problem with subplot_adjust but I don't know humufr> if it's a bug or because I didn't understand how to use humufr> it... humufr> I would like to create a 2 by 3 plots without space humufr> between the