summary.spm {SemiPar} | R Documentation |
Takes a fitted spm
object produced by
spm()
and summarises the fit.
summary.spm(object,...)
object |
a fitted spm object as produced by spm() . |
... |
other arguments. |
Produces tables for the linear (parametric) and non-linear (nonparametric) components. The linear table provides coefficient estimates, standard errors and p-values. The non-linear table provides degrees of freedom values and other information.
The function generates summary tables.
M.P. Wand wand@maths.unsw.edu.au (other contributors listed in SemiPar Users' Manual).
Ruppert, D., Wand, M.P. and Carroll, R.J. (2003)
Semiparametric Regression Cambridge University Press.
http://stat.tamu.edu/~carroll/semiregbook/
Ganguli, B. and Wand, M.P. (2005)
SemiPar 1.0 Users' Manual.
http://www.maths.unsw.edu.au/~wand/papers.html
library(SemiPar) data(onions) attach(onions) log.yield <- log(yield) fit <- spm(log.yield~location+f(dens)) summary(fit)