Hi, If I do something like: biplot(x, cex.axis = .7) then it will only change the font size for axis 1 and 2, but not 3 and 4. Is there a way to change the fonts on axis 3 and 4? -- Cheers, Kevin ------------------------------------------------------------------------------ /* Time is the greatest teacher, unfortunately it kills its students */ -- Ko-Kang Kevin Wang Master of Science (MSc) Student SLC Tutor and Lab Demonstrator Department of Statistics University of Auckland New Zealand Homepage: http://www.stat.auckland.ac.nz/~kwan022 Ph: 373-7599 x88475 (City) x88480 (Tamaki)
Ko-Kang Kevin Wang wrote:> > Hi, > > If I do something like: > biplot(x, cex.axis = .7) > then it will only change the font size for axis 1 and 2, but not 3 and 4. > Is there a way to change the fonts on axis 3 and 4? > > -- > Cheers, > > KevinYes. 1) Provide a patch for biplot.default(). The lines containing axis(3, col = col[2]) axis(4, col = col[2]) are the culprit, obviously. 2) or use par(cex.axis=0.7) biplot(x) Uwe Ligges