Learn R Programming

UPG (version 0.3.4)

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

Description

print provides some basic information about a UPG.Logit object.

Usage

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

Arguments

x

an object of class UPG.Logit.

...

other print parameters.

Author

Gregor Zens

See Also

summary.UPG.Logit to summarize a UPG.Logit object and create tables. predict.UPG.Logit to predict probabilities using a UPG.Logit object. plot.UPG.Logit to plot a UPG.Logit object.

Examples

Run this code
# \donttest{
# estimate a logit model using example data
library(UPG)
data(lfp)
y = lfp[,1]
X = lfp[,-1]
results.logit = UPG(y = y, X = X, model = "logit")
print(results.logit)
# }

Run the code above in your browser using DataLab