R,ggplot2:将曲线拟合到散点图

5

我正试图使用ggplot2拟合以下散点图的曲线。

我找到了geom_smooth函数,但是尝试不同的方法和跨度后,似乎从未得到正确的曲线......

这是我的散点图: test1

这是我的最佳尝试: test2

有人能够得到更好的曲线,使其正确拟合并且不那么抖动吗?谢谢!

下面是一个最小化工作示例:

my.df <- data.frame(sample=paste("samp",1:60,sep=""),
                    reads=c(523, 536, 1046, 1071, 2092, 2142, 4184, 4283, 8367, 8566, 16734, 17132, 33467, 34264, 66934, 68528, 133867, 137056, 267733, 274112, 409, 439, 818, 877, 1635, 1754, 3269, 3508, 6538, 7015, 13075, 14030, 26149, 28060, 52297, 56120, 104594, 112240, 209188, 224479, 374, 463, 748, 925, 1496, 1850, 2991, 3699, 5982, 7397, 11963, 14794, 23925, 29587, 47850, 59174, 95699, 118347, 191397, 236694),
                    number=c(17, 14, 51, 45, 136, 130, 326, 333, 742, 738, 1637, 1654, 3472, 3619, 7035, 7444, 13133, 13713, 21167, 21535, 11, 22, 30, 44, 108, 137, 292, 349, 739, 853, 1605, 1832, 3099, 3565, 5287, 5910, 7832, 8583, 10429, 11240, 21, 43, 82, 124, 208, 296, 421, 568, 753, 908, 1127, 1281, 1448, 1608, 1723, 1854, 1964, 2064, 2156, 2259),
                    condition=rep(paste("cond",1:3,sep=""), each=20))

png(filename="TEST1.png", height=800, width=1000)
print(#or ggsave()
ggplot(data=my.df, aes(x=reads, y=log2(number+1), group=condition, color=condition)) +
    geom_point()
)
dev.off()

png(filename="TEST2.png", height=800, width=1000)
print(#or ggsave()
ggplot(data=my.df, aes(x=reads, y=log2(number+1), group=condition, color=condition)) +
    geom_point() +
    geom_smooth(se=FALSE, method="loess", span=0.5)
)
dev.off()
1个回答

15

这是一个非常广泛的问题,因为您实际上正在寻找一个具有较少方差(更多偏见)的模型,而这种模型有很多种。这里是其中之一:

ggplot(data = my.df, 
       aes(x = reads, y = log2(number + 1), color = condition)) +
    geom_point() +
    geom_smooth(se = FALSE, method = "gam", formula = y ~ s(log(x)))

log gam model

如需文档,请参见?mgcv::gam或适合建模的文本。根据您的用例,可能更有意义在ggplot外部创建您的模型。


在执行上述操作时,是否可能获得任何回归详细信息? - Ben
从技术上讲,也许可以这样做,但实际上,你应该先使用 mgcv::gam() 或其他方法来拟合你的模型,然后再绘制它,如果这是你想要做的。 - alistaire

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接