Learn R Programming

UPG (version 0.2.2)

print.UPG.Probit: Print information for UPG.Probit objects

Description

print provides some basic information about an UPG.Probit object.

Usage

# S3 method for UPG.Probit
print(x, ...)

Arguments

x

an object of class UPG.Probit.

...

other print parameters.

See Also

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.

Examples

Run this code
# NOT RUN {
# 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)
# }

Run the code above in your browser using DataLab