Login or Sign Up
Logging in...
Remember me
Log in
Or
Sign Up
Forgot password or user name?
Log in with
Search in titles only
Search in Python only
Search
Advanced Search
Forums
BYTES
Product Launch
Updates
Developer Toolkit
Today's Posts
Member List
Calendar
Home
Forum
Topic
Python
How do I change the font size for the default coordinates inmatplotlib?
Collapse
This topic is closed.
X
X
Collapse
Posts
Latest Activity
Photos
Page
of
1
Filter
Time
All Time
Today
Last Week
Last Month
Show
All
Discussions only
Photos only
Videos only
Links only
Polls only
Events only
Filtered by:
Clear All
new posts
Previous
template
Next
Carl
#1
How do I change the font size for the default coordinates inmatplotlib?
Mar 21 '08, 03:25 AM
I've searched the user manual (and this forum) but I don't see
anything that helps.
attn.steven.kuo@gmail.com
#2
Mar 21 '08, 05:15 AM
Re: How do I change the font size for the default coordinates inmatplotlib?
On Mar 20, 8:20 pm, Carl <carlwenr...@gm ail.comwrote:
I've searched the user manual (and this forum) but I don't see
anything that helps.
Did you mean the font size for the ticks or for
the labels? Here's an example:
from pylab import *
x = arange(0, 2*pi, 0.01)
y = sin(2*pi*x)
rcParams.update ({'xtick.labels ize': 5, 'ytick.labelsiz e': 10})
subplot(111)
plot(x,y)
ylabel("Vert", fontsize=15)
xlabel("Horiz", fontsize=20)
show()
--
Hope this helps,
Steven
Comment
Post
Cancel
Previous
template
Next
Working...
Yes
No
OK
OK
Cancel
👍
👎
☕
Comment