weighted.ccc.numeric.md
Concordance Correlation Coefficient
Description
safe_ccc <- function(x, y, ...) {
stopifnot(
!anyNA(x), !anyNA(y),
length(x) == length(y)
)
ccc(x, y, ...)
}Usage
## S3 method for class 'numeric'
weighted.ccc(actual, predicted, w, correction = FALSE, ...)Arguments
Value
References
Examples
Last updated