| print.UPG.Logit | R Documentation |
print provides some basic information about a UPG.Logit object.
## S3 method for class 'UPG.Logit'
print(x, ...)
x |
an object of class |
... |
other print parameters. |
Gregor Zens
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.
# 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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.