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

View source: R/PRINT.R

print.UPG.LogitR Documentation

Print information for UPG.Logit objects

Description

print provides some basic information about a 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 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


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


UPG documentation built on Nov. 4, 2023, 5:06 p.m.