| logLik.UPG.Binomial | R Documentation | 
logLik can be used to compute log-likelihoods from UPG.Binomial objects. The log-likelihood is based on the posterior mean of the coefficients.
## S3 method for class 'UPG.Binomial'
logLik(object = NULL, ...)
object | 
 an object of class   | 
... | 
 other logLik parameters.  | 
Returns a numeric of class logLik with attributes containing the number of estimated parameters and the number of observations.
Gregor Zens
summary.UPG.Binomial to summarize a UPG.Binomial object and create tables.
plot.UPG.Binomial to plot a UPG.Binomial object.
coef.UPG.Binomial to extract coefficients from 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")
# extract log-likelihood
ll.binomial = logLik(results.binomial)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.