使用预定义的均值和SE

时间:2015-07-03 21:13:39

标签: r boxplot

我试图创建一个盒子图,我已经设法做了,但我无法弄清楚如何指定错误栏的值。我已经计算了CSV文件中的值(如下所示):

这是我的代码:

# ggplot2.boxplot from http://www.sthda.com/english/wiki/easyggplot2?url=/3-easyggplot2/
install.packages("devtools")
library(devtools)
install_github("kassambara/easyGgplot2")

ggplot2.boxplot(data=df, xName='geno', yName='value', groupName='cond',
    groupColors=c('orange','pink'), ytitle="Days", xtitle="Genotype")

这就是我所拥有的: enter image description here

Data:

df <- read.table(
  text = "value   geno    cond    sem
10.33   Control 0       0.1
  10.39   Control 0       0.1
  10.32   Control 0       0.1
  10.58   Control 0       0.1
  13.10   Control 7       0.14
  12.94   Control 7       0.14
  13.38   Control 7       0.14
  13.55   Control 7       0.14
  10.39   Exp1    0       0.03
  10.26   Exp1    0       0.03
  10.38   Exp1    0       0.03
  10.41   Exp1    0       0.03
  14.50   Exp1    7       0.3
  13.00   Exp1    7       0.3
  13.50   Exp1    7       0.3
  13.75   Exp1    7       0.3
  9.74    Exp2    0       0.02
  9.79    Exp2    0       0.02
  9.81    Exp2    0       0.02
  9.83    Exp2    0       0.02
  12.25   Exp2    7       0.13
  11.86   Exp2    7       0.13
  12.50   Exp2    7       0.13
  12.29   Exp2    7       0.13",
  stringsAsFactors = FALSE,
  header = TRUE
)

1 个答案:

答案 0 :(得分:0)

似乎使用的包是ggplot2的包装器,所以我想使用geom_errorbar函数将获得他们想要的OP。