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