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-NOAA/JRWToolBox documentation built on June 1, 2024, 4:35 p.m.