coef.UPG.MNL {UPG} | R Documentation |
coef
can be used to extract posterior means and credible intervals based on posterior quantiles from UPG.MNL
objects.
## S3 method for class 'UPG.MNL' coef(object, ..., q = c(0.025, 0.975))
object |
an object of class |
... |
other coef parameters. |
q |
a numerical vector of length two holding the posterior quantiles to be extracted. Default are 0.025 and 0.975 quantiles. |
Returns a list containing posterior means and the desired credible interval.
Gregor Zens
summary.UPG.MNL
to summarize the estimates of a discrete choice model from an UPG.MNL
object and create tables.
predict.UPG.MNL
to predict probabilities from a discrete choice model from an UPG.MNL
object.
plot.UPG.MNL
to plot the results of a discrete choice model from an 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, type = "mnl") # extract posterior means and credible interval based on 0.025 and 0.975 quantiles coef(results.mnl, q = c(0.025, 0.975))