gpt4 book ai didi

r - stat_smooth() 的其他范围

转载 作者:行者123 更新时间:2023-12-04 10:56:52 25 4
gpt4 key购买 nike

ggplot2 -功能stat_smooth()有选项 fullrange=TRUEFALSE这决定了拟合是在数据范围还是图表范围内绘制。

有没有办法给stat_smooth()一个杂项?例如。如果我的图在 (0,100) 中有 x 但在 (40,60) 中有拟合数据 x,则绘制 (30,70) 中范围 x 的平滑拟合。

最佳答案

使用 xseq在您的 stat_smooth调用如下:

stat_smooth(xseq = seq(30,70, length=80))

//@哈德利:为什么是 xseq , 和 n作为绘图参数未记录在 ?geom_smooth 中?源代码见这里: https://github.com/hadley/ggplot2/blob/master/R/stat-smooth.r

示例: (改编自 ?geom_smooth)
ggplot(mtcars, aes(qsec, wt)) + 
geom_point() +
xlim(c(10,30)) +
stat_smooth(method=lm, fullrange = TRUE, xseq = seq(11,25, length=80))

结果:

enter image description here

关于r - stat_smooth() 的其他范围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30345101/

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