Summary for neural net regression

Usage

summary.nnreg(out, noprint=F)

Arguments

out A nnreg object
noprint Print the summary

Description

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

Value

Gives a summary of the neural net regression. The components include the function call, number of hidden units, number of parameters, degree of freedom of residuals, root mean squared error and GCV.

See Also

nnreg, summary

Examples

nnreg(ozone$x,ozone$y,1,2) -> fit # fitting a surface to ozone 
# measurements, from 1 to 2 hidden units
summary(fit) # summary of fit


[Package Contents]