我正在尝试用ggplot2填充两条平滑线之间的区域。但是,我所有的尝试都没有成功。问题是我不知道如何为已经为绘图创建的黄土平滑线定义ymin和ymax。
这是我的情节代码:
agrw = aggregate(RT~prime.freq+prime.type, ldt.spa, mean)
theme_set(theme_bw())
ggplot(agrw, aes(x=prime.freq, y=RT, colour=prime.type))+
stat_smooth(method="loess", size=2, se=FALSE)