Skip to contents

This function prints an autogam object. It calls the mgcv::gam object print() method and then adds basic performance metrics from the autogam object:

  • For models that predict numeric outcomes, it prints "MAE", the mean absolute error, and "Std. accuracy", the standardized accuracy (staccuracy) of the winsorized MAE relative to the mean absolute deviation.

  • For models that predict binary outcomes, it prints "AUC", the area under the ROC curve.

Usage

# S3 method for class 'autogam'
print(x, ...)

Arguments

x

An object of class autogam.

...

Additional arguments passed to other methods.

Value

Invisibly returns the input object x.