Learn R Programming

performance (version 0.9.1)

r2_somers: Somers' Dxy rank correlation for binary outcomes

Description

Calculates the Somers' Dxy rank correlation for logistic regression models.

Usage

r2_somers(model)

Value

A named vector with the R2 value.

Arguments

model

A logistic regression model.

References

Somers, R. H. (1962). A new asymmetric measure of association for ordinal variables. American Sociological Review. 27 (6).

Examples

Run this code
if (FALSE) {
if (require("correlation")) {
  model <- glm(vs ~ wt + mpg, data = mtcars, family = "binomial")
  r2_somers(model)
}
}

Run the code above in your browser using DataLab