summary.tps {funfits}R Documentation

Summary for thin plate spline regression

Description

This function is a method for the generic function summary for class tps.

Usage

summary.tps(x, ...)

Arguments

x A tps object.

Value

Gives a summary of the thin plate spline regression. The components include the function call, number of observations, effective degrees of freedom, residual degrees of freedom, root mean squared error, R-squared and adjusted R-squared, log10(lambda), cost, GCV minimum, power and a summary of the residuals.

See Also

tps, summary

Examples

tps(ozone$x,ozone$y) -> fit  # tps fit
summary(fit)                 # summary of fit


[Package Contents]