plot.loess.boot {spatialEco} | R 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)
[Package spatialEco version 2.0-2 Index]