r2_nagelkerke {performance} | R Documentation |
Nagelkerke's R2
Description
Calculate Nagelkerke's pseudo-R2.
Usage
r2_nagelkerke(model, ...)
Arguments
model |
A generalized linear model, including cumulative links resp. multinomial models. |
... |
Currently not used. |
Value
A named vector with the R2 value.
References
Nagelkerke, N. J. (1991). A note on a general definition of the coefficient of determination. Biometrika, 78(3), 691-692.
Examples
model <- glm(vs ~ wt + mpg, data = mtcars, family = "binomial")
r2_nagelkerke(model)
[Package performance version 0.12.2 Index]