On Thu, May 22, 2008 at 03:25:41PM -0700, Christopher Brown wrote:
> Hi Users,
>
> What is the best way to add a subscript to a tick label using the
> default font?
Hm, could you give a short example of what you want? I do subscripts
with this code:
In [1]: subplot(111)
Out[1]:
In [2]: xticks
Hi Users,
What is the best way to add a subscript to a tick label using the
default font?
--
Chris
-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/M
You didn't mention the version of matplotlib you are using. There are
some known bugs using NaNs on 0.90.x and 0.91.x that have been fixed on
the trunk. Unfortunately, it will be difficult to backport these fixes.
Have you tried using masked arrays instead of arrays with NaNs?
Also, can you p
On Wed, May 21, 2008 at 10:57 AM, PaterMaximus
<[EMAIL PROTECTED]> wrote:
> I want to make one scatter plot and use the same scales on another. I think
> I seen getting the Axes from the first scatter plot using v=axis() and then
> setting them on second with axis(v) but I can not get to work. Any
On Thu, May 22, 2008 at 9:45 AM, Jouni K. Seppänen <[EMAIL PROTECTED]> wrote:
> I think this behavior of legend is suboptimal, but there is a logic to
> it: by default you label objects in the order you draw them, and the
> histogram plot happens to consist of several similarly-colored objects.
T
Correction :
> In the matplotlibrc, I have :
> maskedarray : False
--
Fabrice Silva <[EMAIL PROTECTED]>
LMA UPR CNRS 7051 - équipe S2M
-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visua
On Thu, 22 May 2008, Friedrich Hagedorn apparently wrote:
> I hope I can change my habit to type 'g' instead of 'r'.
Or use an email client that allows you to register
your email lists to address this problem.
(Such as Mahogany mail.)
Cheers,
Alan Isaac
--
> p.setp(ax1.get_yticklabels(), color='r')
This worked!
Thanks a lot!
Chiara
> To: matplotlib-users@lists.sourceforge.net
> From: [EMAIL PROTECTED]
> Date: Thu, 22 May 2008 17:52:09 +0300
> Subject: Re: [Matplotlib-users] changing ticklabels color
>
> Chiara Caronna <[EMAIL PROTECTED]> writes:
On Thu, May 22, 2008 at 05:59:23PM +0300, Jouni K. Seppänen wrote:
> Friedrich Hagedorn <[EMAIL PROTECTED]> writes:
>
> > could you set the right reply-adress in the mails from the
> > matplotlib mailinglist?
>
> This is something of a controversial issue. One side is presented at
>
> http://ww
Chiara Caronna <[EMAIL PROTECTED]> writes:
> ax1=p.subplot(212)
> ax1.set_xlabel('t [sec]')
> ax1.set_ylabel('g^2(q,t)')
> ax1.set_yticklabels(color='r')
You could do
for label in ax1.get_yticklabels(): label.set_color('r')
or use the setp shortcut:
p.setp(ax1.get_yticklabels(), color='r')
--
This has been discussed before. See:
http://sourceforge.net/mailarchive/message.php?msg_id=4756A726.1080104%40gmx.net
Johann
Friedrich Hagedorn wrote:
> Hello List-Admin,
>
> could you set the right reply-adress in the mails from the
> matplotlib mailinglist?
>
> Everytime when I what to repl
On Thu, May 22, 2008 at 02:30:24PM +, Chiara Caronna wrote:
>Hello,
>I would like to change the color of the yticklabels. I tried to use this
>command:
>
>ax1=p.subplot(212)
[...]
>ax1.set_yticklabels(color='r')
* Solution 1:
In [1]: ax1=subplot(111)
In [2]: setp(ax1.get
Friedrich Hagedorn <[EMAIL PROTECTED]> writes:
> could you set the right reply-adress in the mails from the
> matplotlib mailinglist?
This is something of a controversial issue. One side is presented at
http://www.unicom.com/pw/reply-to-harmful.html
and I'm sure the other one has a web page so
David Simpson <[EMAIL PROTECTED]> writes:
> This is probably my lack of knowledge of python, but how do I set up
> legend labels for some bar-plots that have been produced inside a
> function. For example, the following will nicely plot my bar-plots, but
> then legend doesn't know about the colo
Hello List-Admin,
could you set the right reply-adress in the mails from the
matplotlib mailinglist?
Everytime when I what to reply to a message I have to set the right
email-adress to
matplotlib-users@lists.sourceforge.net
otherwise the email would sent only as a privat mail.
I use mutt an
On Thu, May 22, 2008 at 02:52:13PM +0200, David Simpson wrote:
> This is probably my lack of knowledge of python, but how do I set up
> legend labels for some bar-plots that have been produced inside a
> function. For example, the following will nicely plot my bar-plots, but
> then legend doesn't
Hello,
I would like to change the color of the yticklabels. I tried to use this
command:
ax1=p.subplot(212)
ax1.set_xlabel('t [sec]')
ax1.set_ylabel('g^2(q,t)')
ax1.set_yticklabels(color='r')
but it gives an error:
TypeError: set_yticklabels() takes at least 2 non-keyword arguments (1 given)
i
This is probably my lack of knowledge of python, but how do I set up
legend labels for some bar-plots that have been produced inside a
function. For example, the following will nicely plot my bar-plots, but
then legend doesn't know about the colours used, so here just uses black
for both labels.
Hello,
On Wednesday 21 May 2008 17:57:28 PaterMaximus wrote:
> I want to make one scatter plot and use the same scales on another. I think
> I seen getting the Axes from the first scatter plot using v=axis() and then
> setting them on second with axis(v) but I can not get to work. Any help
> appre
19 matches
Mail list logo