plot.loess.boot: Plot Loess Bootstrap

View source: R/plot.loess.boot.R

plot.loess.bootR Documentation

Plot Loess Bootstrap

Description

Plot function for loess.boot object

Usage

## S3 method for class 'loess.boot'
plot(x, ...)

Arguments

x

A loess.boot object

...

Additional arguments passed to plot

Value

plot of lowess bootstrap

Author(s)

Jeffrey S. Evans <jeffrey_evans@tnc.org>

Examples

 n=1000
 x <- seq(0, 4, length.out=n)	 
 y <- sin(2*x)+ 0.5*x + rnorm(n, sd=0.5)
 sb <- loess.boot(x, y, nreps = 99, confidence = 0.90, span = 0.40)
 plot(sb)
                   

spatialEco documentation built on Nov. 18, 2023, 1:13 a.m.