Description Usage Arguments Details Value Author(s) See Also Examples
Computes Somers' Dxy rank correlation between a variable x and a binary (0-1) variable y, and the corresponding receiver operating characteristic curve area c. Note that Dxy = 2(c - 0.5). somers allows for a weights variable, which specifies frequencies to associate with each observation.
1 2 3 4 | somers.mer(x, ...)
## Default S3 method:
somers.mer(x, weights = NULL, normwt = FALSE,
na.rm = TRUE)
|
x |
a object of class |
weights |
a numeric vector of observation weights (usually frequencies). Omit or specify a zero-length vector to do an unweighted analysis. |
normwt |
logical. Should |
na.rm |
logical. Should missing data be removed? |
An adaptation of somers2 from package Hmisc for use with mixed models from the lme4 package. Note that the additional vector of outcomes is not necessary in this version.
A vector with the named elements C, Dxy, n (number of non-missing pairs), and Missing. Uses the formula C = (mean(rank(x)[y == 1]) - (n1 + 1)/2)/(n - n1), where n1 is the frequency of y = 1.
F. Harrell, J. Grafmiller
1 2 3 4 5 6 7 8 9 10 11 12 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.