-6ren">
gpt4 book ai didi

r - 等效于使用 geom_smooth() 和 "gam"的跨度

转载 作者:行者123 更新时间:2023-12-05 01:32:46 24 4
gpt4 key购买 nike

这可能是一个非常基本的问题,但我还没有找到答案。当 method = "gam" 时,geom_smooth 函数中的 span 参数是否等效?我一般不熟悉 GAM,因此我将不胜感激。我想为 n > 1'000 和 method = "loess" 的数据添加更灵活(更摇摆)的平滑器需要花费大量时间来计算。

最佳答案

mgcv::gam 默认情况下使用惩罚回归优化平滑度。您可以关闭它并使用 k 参数手动指定平滑度:

ggplot(mpg, aes(displ, hwy)) +
geom_point() +
geom_smooth(method = "gam",
formula = y ~ s(x, bs = "cs", fx = TRUE, k = 20))

您可能应该研究一下 mgcv 包的文档。

关于r - 等效于使用 geom_smooth() 和 "gam"的跨度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65405938/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com