In R, how to make a boxplot?

后端 未结 1 1388
轮回少年
轮回少年 2021-01-29 08:16

My input table has two columns like this:

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

I want to make a boxplot of the y values

1条回答
  •  情歌与酒
    2021-01-29 09:01

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

    enter image description here

    0 讨论(0)
提交回复
热议问题