所以我有类似的数据
Value Number
3 1.5
6 1.67
9 1.7
12 1.6
15 1.7
18 1.8
21 1.9
24 1.98
27 1.98
30 1.8
33 1.84
36 1.5
39 1.7
42 1.9
45 1.9
48 2.0
51 1.21
54 1.4
57 2.34
60 2.5
63 2.1
66 1.77
我将如何制作带有标准误差线的散点图....我查了一下,它似乎是这样的
errbar(df$Value, df$Number, yplus, yminus, cap = 0.015,
xlab= deparse(substitute(x)),
ylab= deparse(substitute(y)))
但是我不熟悉yplus,yminus?和deparse??还有其他方法可以做到这一点吗?我尝试使用 ggplot 并使用 install.packages(ggplot2) 下载它,但 R 一直说它找不到它并用这段代码尝试过
> ggplot(data=dataset,aes(x=df$Value,y=df$Number,colour=Code,linetype=Group,ymin=Mean-SE,ymax=Mean+SE))
Error: could not find function "ggplot"
> + geom_line()
Error: could not find function "geom_line"
> + scale_x_continuous(breaks=c(1,2))
Error: could not find function "scale_x_continuous"
> + scale_linetype_manual(values=c(2,1))
Error: could not find function "scale_linetype_manual"
> + geom_point()
Error: could not find function "geom_point"
> + geom_errorbar(width=.1,position='dodge')
Error: could not find function "geom_errorbar"
另外,我应该如何在一张图中用相同的 x 轴值绘制 2 个散点图并显示误差线?谢谢大家...任何建议都会被重视