print.UPG.Logit {UPG} | R Documentation |
print
provides some basic information about an UPG.Logit
object.
## S3 method for class 'UPG.Logit' print(x, ...)
x |
an object of class |
... |
other print parameters. |
Gregor Zens
summary.UPG.Logit
to summarize the estimates of a discrete choice model from an UPG.Logit
object and create tables.
predict.UPG.Logit
to predict probabilities from a discrete choice model from an UPG.Logit
object.
plot.UPG.Logit
to plot the results of a discrete choice model from an UPG.Logit
object.
# estimate a logit model using example data library(UPG) data(lfp) y = lfp[,1] X = lfp[,-1] results.logit = UPG(y = y, X = X, type = "logit", verbose=TRUE) print(results.logit)