这个问题与这个有关。
我正在尝试使用loess()
inside ggplot2
,stat_smooth()
这样:
ggplot(data = mydf, aes(x=time, y=pdm, z=surface))
+ geom_point() + stat_smooth(col="red")
+ stat_quantile(formula = loess(mydf$pdm ~ mydf$time), quantiles = c(0.25, 0.5, 0.75))
但是,我收到以下错误消息:
警告信息:
1:“newdata”有 100 行,但找到的变量有 6816 行
2:“stat_quantile()”中的计算失败:
替换有 6816 行,数据有 100
知道发生了什么/如何让它工作吗?
谢谢