R_Graphics_axes の変更点 - アールメカブ

アールメカブ


R_Graphics_axes の変更点


[[Rの備忘録]]

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" )
などとする.