在R默认绘图中,用户可以更改f指数以改变黄土回归的平滑水平(高f表示高平滑)。
我使用以下命令使用ggplot2 stat_smooth
进行了黄土回归:
ggplot(data=combine, aes(x=pos/1000000, y=weightedFst, color=group, group=group)) +
geom_smooth(method="loess", size=1, formula = y ~ x) +
scale_x_continuous(limits=c(0, 302), breaks=c(50, 250)) +
xlab("physical position (Mb)") + ylab("Fst") +
ggtitle("loess regression of Fst in 10kb non-overlapping windows") +
theme_bw()`
如何在ggplot2中更改黄土回归的平滑等级?我四处搜寻但找不到答案。有人可以帮忙吗?