calcCCC | R Documentation |
Calculate the concordance correlation coefficient (CCC) and it's significance value from two vectors of related data.
calcCCC(x, y)
x |
A numeric vector of values to compare against |
y |
A numeric vector of values to compare against |
A list of the following:
rho.c |
The concordance correlation coefficient (CCC). |
ci95 |
The 95 percent confidence intervals of the CCC. |
Z |
The z-score of the CCC. |
p.value |
The p-value corresponding to the Z-score. |
Stu Field
Lawrence Lin, Biometrics (45): 255-268.
cor
, pnorm
calcCCC(rnorm(100), rnorm(100)) v <- rnorm(100) calcCCC(v, v + 1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.