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