R_Graphics_axes
biplotでx,y軸のtickmark の描画の抑制を試みると
biplot(td.correspPP, bg = "white", axes = F) 以下にエラー plot.default(y, axes = FALSE, type = "n", xlim = xlim * ratio, : 仮引数 ”axes” が複数の実引数にマッチしました 追加情報: Warning message: In text.default(x, xlabs, cex = cex[1], col = col[1], ...) : "axes"はグラフィックスパラメータではありません
やむ得ないので,ちと入力は長くなるが
biplot(td.correspPP, bg = "white", yaxt = "n", xaxt = "n" )
bgオプションも効いていないよう.
par(oma = rep(1, 4), mar = rep(1, 4), bg = "white" )
などとする.
Link: Rの備忘録(4072d)
Last-modified: 2008-08-30 (土) 16:05:54 (6008d)