2
font.lab ; font.axis ; cex.lab
xlim()
のようなほとんどのpar()
がRでplot.ts()
で動作しないのはなぜですか?Rのplot.ts:なぜほとんどのpar()がそれで動かないのですか?
どのようにすればいいですか?plot.ts()
font.lab ; font.axis ; cex.lab ; xlim
を受け入れますか?
coin_outcome <- sample(x = c(0, 1), size = 20, prob = c(1 - .6, .6), replace = TRUE)
plot.ts(cumsum(coin_outcome)/1:20, ylim = c(0, 1), font.lab = 2, font.axis = 2,
cex.lab = 2, xlim = c(1, 20))