print.UPG.Probit {UPG}R Documentation

Print information for UPG.Probit objects

Description

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

Usage

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

Arguments

x

an object of class UPG.Probit.

...

other print parameters.

Author(s)

Gregor Zens

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


# 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)


[Package UPG version 0.2.2 Index]