First time here? Check out the FAQ!

Ask Your Question
0

font size in matplotlib

asked 13 years ago

v_2e gravatar image

Hello! Could somebody please help me find a way to change the font size in Matplotlib plots. Particularly, I would like to change the size of the axis ticks labels.

Thank you. vladimir

Preview: (hide)

2 Answers

Sort by » oldest newest most voted
0

answered 13 years ago

Felix Lawrence gravatar image

yticks(fontsize=SIZE) should work:

import pylab
import matplotlib
pylab.clf()
#pylab.rc('text', fontsize=18) #This is a 'bad' but effective way to change the default font size
pylab.plot(xdata, ydata, '--')
pylab.xlabel(r"$x$",fontsize=24)
pylab.ylabel(r"$y$",fontsize=24)
pylab.yticks(fontsize=40)
pylab.yticks(fontsize=40)
pylab.savefig('transspeclin.pdf', format='pdf')
pylab.savefig('transspeclin')
pylab.show()
Preview: (hide)
link
0

answered 13 years ago

Jason Grout gravatar image

updated 13 years ago

Is this example from the docs what you want? http://www.sagemath.org/doc/reference...

Or even just plot(x^2,(x,0,2), fontsize=20)

Note that these answers are for sagecommands. If you are looking for how to deal with matplotlib plots, it might be better to post to the matplotlib help list. Or personally, I usually just look at the matplotlib gallery (http://matplotlib.sourceforge.net/gal...) and find something close to what I want.

Preview: (hide)
link

Comments

Yes, I was talking about the direct usage of Matplotlib. An currently the only solution I found is this one: http://stackoverflow.com/questions/6390393/matplotlib-make-tick-labels-font-size-smaller

v_2e gravatar imagev_2e ( 13 years ago )

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 13 years ago

Seen: 18,527 times

Last updated: Dec 05 '11