带有ggplot2_错误消息的r中子组的Boxplot

时间:2016-05-30 08:31:51

标签: r plot ggplot2

我想像在此req.query中报告的那样在r中创建一个boxplot  但我有ggplot2的问题报告错误信息:

错误:未知参数:stat_params

我附上了我的数据集..任何人都可以解释我如何制作类似于此的箱形图? SO post

Group   Biomass Area     Biomass S  
a       24917            8008
a       66669            11484
a       183804            52256
a       440343            390796
b       18552            9940
b       21718            4644
b       27365            16830
b       27437            18997
b       57743            66360
b       68698            18216
b       201322           40992
c       11650            2484
c       21491            18410
c       66388            9775
c       777336           406350
c       1420608          1137929
d       133323           105884
d       597494           398671
e       745              256.68
e       188507           401468
e       194980           71725
e       1577223          355802
f       23518            5882
f       263680           170960
f       1669782          2792580
f       3582829          2482400  

由于

1 个答案:

答案 0 :(得分:0)

也许是这样的?

library(ggplot2)
df <- read.csv("test.csv")

df <- reshape2::melt(df, "Group")

ggplot(df, aes(x = Group, y = value, fill = variable)) + 
  stat_boxplot(geom = "errorbar") + 
  geom_boxplot() + 
  theme_classic()

enter image description here