summary.nnreg {funfits} | R Documentation |
This function is a method for the generic function summary for class nnreg.
summary.nnreg(out, noprint=F)
out |
A nnreg object |
noprint |
Print the summary |
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.
nnreg, summary
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