ccc.md
Concordance Correlation Coefficient
Description
safe_ccc <- function(x, y, ...) {
stopifnot(
!anyNA(x), !anyNA(y),
length(x) == length(y)
)
ccc(x, y, ...)
}Usage
## Generic S3 method
## for Concordance Correlation Coefficient
ccc(...)
## Generic S3 method
## for weighted Concordance Correlation Coefficient
weighted.ccc(...)Arguments
Value
References
Examples
Last updated