View source: R/percent_agreement.R
agreement | R Documentation |
Calculate an agreement proportion
agreement(
true_calls,
false_calls,
digits = 0.1,
interval = 0.95,
format_big = FALSE
)
true_calls |
The number of correct calls (true positives or true negatives). |
false_calls |
The number of incorrect calls (false positives or false negatives). |
digits |
The number of digits to round to. Defaults to |
interval |
The confidence interval to calculate. Defaults to |
format_big |
A boolean indicating whether or not to format large numbers
in string outputs to include commas as a big mark and to avoid scientific
notation. Defaults to |
A formatted agreement proportion.
agreement(100, 0)
agreement(100, 0, 0.01, 0.99)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.