如何在R中绘图

时间:2014-03-08 09:37:41

标签: r plot

我正在努力使用以下R代码进行绘图;

set.seed(1234)
x1=rnorm(100)^2

Index=1:length(x1)
cutoff=3
plot(Index,x1,type="h")
abline(h=cutoff,lty=2)

首先,我想绘制那些大于截止值的值的索引? 其次,我有五个类似上面的情节,我正在使用

par(mfrow= c(3,2))

它提供3 x 2空间,但对于第五个绘图,我需要将其绘制在中心;

1 个答案:

答案 0 :(得分:0)

在安排绘图方面,layout()函数将是您最好的朋友。

检查http://www.statmethods.net/advgraphs/layout.html以获取有关该功能的详细教程。