print.UPG.Logit: Print information for UPG.Logit objects
Description
print provides some basic information about an UPG.Logit object.
Usage
# S3 method for UPG.Logit
print(x, ...)
Arguments
x
an object of class UPG.Logit.
...
other print parameters.
See Also
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.
# NOT RUN {# estimate a logit model using example datalibrary(UPG)
data(lfp)
y = lfp[,1]
X = lfp[,-1]
results.logit = UPG(y = y, X = X, type = "logit", verbose=TRUE)
print(results.logit)
# }