R/llowess.line.R

llowess.line <- function (x, y, smoothing.param = 2/3, ...) 
{
    tmp <- na.omit(cbind(x, y))
    llines(stats::lowess(tmp[, 1], tmp[, 2], f = smoothing.param), ...)
}
John-R-Wallace/R-ToolBox documentation built on May 8, 2024, 3:21 a.m.