我正在使用ggplot2
进行绘图,我想知道是否有办法捕捉stat_smooth
生成的点数或至少知道它使用的参数。
ggplot(data=ICLR, aes(x= AÑO_MES, y= ICLRr, size=PatMensualFondo )) +
xlab("Patrimonio Medio") + ylab("% Cobertura Media") +
stat_smooth( mapping = aes (group = 1)) +
geom_point()
超过1000点我得到了这个:" geom_smooth: method="auto" and size of largest group is >=1000, so using gam with formula: y ~ s(x, bs = "cs"). Use 'method = x' to change the smoothing method. "
我知道它使用了gam method
,但还有什么?
如果我不能像在这个帖子中所说的那样捕获数据点:
Can one extract model fit parameters after a ggplot stat_smooth call?
我如何复制stat_smooth的内容?