print.UPG.Logit {UPG}R Documentation

Print information for UPG.Logit objects

Description

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

Usage

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

Arguments

x

an object of class UPG.Logit.

...

other print parameters.

Author(s)

Gregor Zens

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.

Examples


# estimate a logit model using example data
library(UPG)
data(lfp)
y = lfp[,1]
X = lfp[,-1]
results.logit = UPG(y = y, X = X, type = "logit", verbose=TRUE)
print(results.logit)


[Package UPG version 0.2.2 Index]