Hello R Users, I am a new user to R. When we make a simple plot then how to increase the font size of the data at the each axis. Many thanks, Kind regards, Yogesh -- ==========================================Yogesh Tiwari, Max-Planck Institute for Biogeochemistry, Hans-Knoell Strasse 10, D-07745 Jena, Germany Office : 0049 3641 576 376 Home : 0049 3641 223 163 Fax : 0049 3641 577 300 Cell : 0049 1520 4591 008 e-mail : yogesh.tiwari at bgc-jena.mpg.de
ManuelPerera-Chang@fmc-ag.com
2005-Oct-25 14:34 UTC
[R] how to increase the font size of axis data
Hi Yogesh, try modifying the graphical parameters like> par(cex=2,cex.axis=1.2)for graphs in base: or for e.g. trellis graphs in the "lattice" package the trellis parameter??s (try ?trellis.par.get) axis.text <- trellis.par.get("axis.text") axis.text$cex <- 3.2 trellis.par.set("axis.text", axis.text) BR, Manuel "Yogesh K. Tiwari" <ktiwari at bgc-jena.mpg To: r-help at stat.math.ethz.ch .de> cc: Sent by: Subject: [R] how to increase the font size of axis data r-help-bounces at stat.m ath.ethz.ch 25.10.2005 15:14 Hello R Users, I am a new user to R. When we make a simple plot then how to increase the font size of the data at the each axis. Many thanks, Kind regards, Yogesh -- ==========================================Yogesh Tiwari, Max-Planck Institute for Biogeochemistry, Hans-Knoell Strasse 10, D-07745 Jena, Germany Office : 0049 3641 576 376 Home : 0049 3641 223 163 Fax : 0049 3641 577 300 Cell : 0049 1520 4591 008 e-mail : yogesh.tiwari at bgc-jena.mpg.de ______________________________________________ R-help at stat.math.ethz.ch mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html