predict.autopls {autopls} | R Documentation |
Applies a model from a autopls
object to a vector, matrix or to a
stack
or brick
from package raster.
## S3 method for class 'autopls' predict(object, dat, ...)
object |
object of class |
dat |
vector, matrix, dataframe or imagery (the latter as |
... |
logical. Arguments to be passed to method |
Elements, columns or layers must have the same number and order as the input
predictors for autopls
. The predictors resulting from autopls are
selected silently. In case of large image files the function
is based on tile processing.
A new vector matrix or image depending on the type of newdata
Sebastian Schmidtlein
## load predictor and response data to the current environment data (murnau.X) data (murnau.Y) ## call autopls with the standard options model<-autopls (murnau.Y ~ murnau.X) ## new data new <- murnau.X + 500 ## prediction predict (model, new)