table.stats.boot {verification} | R Documentation |
Performs a bootstrap on data from a 2 by 2 contingency table returning verification statistics. Potentially useful in creating error bars for performance diagrams.
table.stats.boot(CT, R = 100, alpha = 0.05)
CT |
Two by two contingency table. Columns summarize observed values. Rows summarize forecasted values. |
R |
Number of resamples |
alpha |
Confidence intervals. |
2 row matrix with upper and lower intervals for bias, pod, far, ets.
Matt Pocernich <pocernic@ucar.edu>
table.stats
### example from Roebber. RB1 <- matrix(c(95, 55, 42, 141), ncol = 2) table.stats.boot(RB1, R = 1000 )