捕获stat_smooth数据或参数

时间:2012-11-28 07:59:30

标签: r ggplot2 smooth gam loess

我正在使用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的内容?

0 个答案:

没有答案