Hello! Does anybody know how to change the font size of axis labels in the graphic window? I found that it is possible to change font to "bold" but labels are very tiny. Thanks in advance, Nick -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the "body", not the subject !) To: r-help-request at stat.math.ethz.ch _._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._
On Wed, 5 Dec 2001, Nick Kostrov wrote:> Does anybody know how to change the font size of axis labels in the graphic > window? I found that it is possible to change font to "bold" but labels are > very tiny.Using some variation on graphics parameter cex, depending if the `axis labels' are the numbers or the x/ylab= labels. However, more likely your device is set up wrongly. Take a look at its parameters, which may include pointsize, for example. To help more we need to know 1) the details of your system 2) what you used to get the plot 3) what exactly is the problem. -- Brian D. Ripley, ripley at stats.ox.ac.uk Professor of Applied Statistics, http://www.stats.ox.ac.uk/~ripley/ University of Oxford, Tel: +44 1865 272861 (self) 1 South Parks Road, +44 1865 272860 (secr) Oxford OX1 3TG, UK Fax: +44 1865 272595 -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the "body", not the subject !) To: r-help-request at stat.math.ethz.ch _._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._
Nick Kostrov wrote:> > Hello! > > Does anybody know how to change the font size of axis labels in the graphic > window? I found that it is possible to change font to "bold" but labels are > very tiny.Have a look at ?par. You can use the argument cex.axis for the size of tickmark labels and cex.lab for axis annotation, e.g.: Example: plot(1:10, cex.axis=2, cex.lab=3) Uwe -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the "body", not the subject !) To: r-help-request at stat.math.ethz.ch _._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._
Nick Kostrov <nikolai at eri.u-tokyo.ac.jp> writes:> >Hello! > > >Does anybody know how to change the font size of axis labels in the graphic >window? I found that it is possible to change font to "bold" but labels are >very tiny. > >Thanks in advance,par(cex), par(cex.axis), par(cex.lab), par(cex.main), par(cex.sub). See help(par) for details. Mark -- Mark Myatt -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the "body", not the subject !) To: r-help-request at stat.math.ethz.ch _._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._