predict.autopls: Prediction using a fitted autopls model

Description Usage Arguments Details Value Author(s) See Also Examples

Description

Applies a model from a autopls object to a vector, matrix or to a stack or brick from package raster.

Usage

1
2
  ## S3 method for class 'autopls'
predict(object, dat, ...)

Arguments

object

object of class autopls

dat

vector, matrix, dataframe or imagery (the latter as stack or brick from package raster.

...

logical. Arguments to be passed to method

Details

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.

Value

A new vector matrix or image depending on the type of newdata

Author(s)

Sebastian Schmidtlein

See Also

autopls

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
  ## 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)

autopls documentation built on May 2, 2019, 9:39 a.m.