Learn R Programming

sjstats (version 0.12.0)

cod: Tjur's Coefficient of Discrimination

Description

This method calculates the Coefficient of Discrimination D for generalized linear (mixed) models for binary data. It is an alternative to other Pseudo-R-squared values like Nakelkerke's R2 or Cox-Snell R2.

Usage

cod(x)

Arguments

x

Fitted glm or glmer model.

Value

The D Coefficient of Discrimination, also known as Tjur's R-squared value.

References

Tjur T (2009) Coefficients of determination in logistic regression models - a new proposal: The coefficient of discrimination. The American Statistician, 63(4): 366-372

See Also

r2 for Nagelkerke's and Cox and Snell's pseudo r-squared coefficients.

Examples

Run this code
# NOT RUN {
library(sjmisc)
data(efc)

# Tjur's R-squared value
efc$services <- ifelse(efc$tot_sc_e > 0, 1, 0)
fit <- glm(services ~ neg_c_7 + c161sex + e42dep,
           data = efc, family = binomial(link = "logit"))
cod(fit)

# }

Run the code above in your browser using DataLab