Skip to content
Back to formatted view

Raw Message

Message-ID: <3E91DA0E.2B313BD0@statistik.uni-dortmund.de>
Date: 2003-04-07T20:05:34Z
From: Uwe Ligges
Subject: Change cex.axis in biplot()

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,
> 
> Kevin

Yes.

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