码迷,mamicode.com
首页 > 其他好文 > 详细

如何在ggplot2中使用spline平滑算法

时间:2014-06-28 14:58:36      阅读:351      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   使用   cti   

smooth.spline2 <- function(formula, data, ...) {
mat <- model.frame(formula, data)
smooth.spline(mat[, 2], mat[, 1])
}

predictdf.smooth.spline <- function(model, xseq, se, level) {
pred <- predict(model, xseq)
data.frame(x = xseq, y = pred$y)
}

qplot(mpg, wt, data = mtcars) + geom_smooth(method = "smooth.spline2", se= F)

spline是很好的连接点之后将其平滑的算法,但是ggplot中不能直接用,这里提供了一个子函数,可以使用spline让曲线平滑,非常好用。

原网址:http://www.lgbmi.com/2011/10/using-smooth-spline-in-stat-scale-in-ggplot2/

如何在ggplot2中使用spline平滑算法,布布扣,bubuko.com

如何在ggplot2中使用spline平滑算法

标签:style   blog   http   color   使用   cti   

原文地址:http://www.cnblogs.com/yumtaoist/p/3798240.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!