print.UPG.MNL | R Documentation |
print
provides some basic information about a UPG.MNL
object.
## S3 method for class 'UPG.MNL'
print(x, ...)
x |
an object of class |
... |
other print parameters. |
Gregor Zens
summary.UPG.MNL
to summarize a UPG.MNL
object and create tables.
predict.UPG.MNL
to predict probabilities using a UPG.MNL
object.
plot.UPG.MNL
to plot a UPG.MNL
object.
# estimate a multinomial logit model using example data
library(UPG)
data(program)
y = program[,1]
X = program[,-1]
results.mnl = UPG(y = y, X = X, model = "mnl")
print(results.mnl)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.