buildmultinom {buildmer} | R Documentation |
buildmer
to perform stepwise elimination for multinom
models from package nnet
Use buildmer
to perform stepwise elimination for multinom
models from package nnet
buildmultinom(formula, data = NULL, buildmerControl = buildmerControl())
formula |
See the general documentation under |
data |
See the general documentation under |
buildmerControl |
Control arguments for buildmer — see the general documentation under |
if (requireNamespace('nnet') && require('MASS')) {
options(contrasts = c("contr.treatment", "contr.poly"))
example(birthwt)
bwt.mu <- buildmultinom(low ~ age*lwt*race*smoke,bwt)
}