powered by
Weighted recall.
recall(actual, predicted, w = NULL, ...)
Observed values (0 or 1).
Predicted values (0 or 1).
Optional case weights.
Further arguments passed to weighted_mean.
weighted_mean
A numeric vector of length one.
precision, f1_score.
precision, f1_score
# NOT RUN { recall(c(0, 0, 1, 1), c(0, 0, 1, 1)) recall(c(1, 0, 0, 1), c(0, 0, 1, 1)) recall(c(1, 0, 0, 1), c(0, 0, 1, 1), w = 1:4) # }
Run the code above in your browser using DataLab