print.UPG.Binomial | R Documentation |
print
provides some basic information about a UPG.Binomial
object.
## S3 method for class 'UPG.Binomial'
print(x, ...)
x |
an object of class |
... |
other print parameters. |
Gregor Zens
summary.UPG.Binomial
to summarize a UPG.Binomial
object and create tables.
predict.UPG.Binomial
to predict probabilities using a UPG.Binomial
object.
plot.UPG.Binomial
to plot a UPG.Binomial
object.
# estimate a binomial logit model using example data
library(UPG)
data(titanic)
y = titanic[,1]
Ni = titanic[,2]
X = titanic[,-c(1,2)]
results.binomial = UPG(y = y, X = X, Ni = Ni, model = "binomial")
print(results.binomial)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.