summary.autopls {autopls} | R Documentation |
Summary and print methods for autopls
and slim
objects.
## S3 method for class 'autopls' summary(object, ...) ## S3 method for class 'slim' summary(object, ...) ## S3 method for class 'autopls' print(x, ...) ## S3 method for class 'slim' print(x, ...)
object |
object of class |
x |
object of class |
... |
Arguments to be passed to methods |
predictors |
number of predictors used in the final model |
lv |
number of latent vectors used in the final model |
rmse.cal |
root mean squared errors in calibration |
rmse.val |
root mean squared errors in validation |
r2.cal |
R2 in calibration |
r2.val |
R2 in validation |
Print returns a screen output and an unvisible object with the same content
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) ## print and plot results print (model)