在R中,如何制作一个箱形图?

时间:2015-06-10 07:39:25

标签: r aggregate boxplot

我的输入表有两列,如下所示:

x    y
1    187
2    235
3    857
3    253
2    955
1    267

我想为每个x值制作y值的箱线图。 x值限制为1,2,3。

这是我的R代码:

data=read.table("input.txt")
arr=array(dim=3)
for (i in 1:3)
{
    arr[i]=data[data.x==i,"y"] // This line raises warnings.
}
boxplot(arr)

如何更正我的代码?

1 个答案:

答案 0 :(得分:2)

foo <- data.frame(x=rep(1:5,each=20),y=rnorm(100))
with(foo,boxplot(y~x))

enter image description here