Calculate evaluation metrics based on a misclassification table
calculate.stat
is an internal biomod2 function to get scores, based on a misclassification table, of some referenced evaluation metrics.
calculate.stat( Misc, stat='TSS')
Misc |
a misclassification table |
stat |
either 'TSS', 'KAPPA', 'ACCURACY', 'BIAS', 'POD', 'FAR', 'POFD', 'SR', 'CSI', 'ETS', 'HK', 'HSS', 'OR' or 'ORSS' |
Please refer to BIOMOD_Modeling
to get more information about this metrics.
The stat
score for the Misc
table.
Damien Georges
a <- sample(c(0,1),100, replace=TRUE) b <- sample(c(0,1),100, replace=TRUE) miscTab_aa <- table(a,a) miscTab_ab <- table(a,b) # perfect score calculate.stat( miscTab_aa, stat='TSS') # random score calculate.stat( miscTab_ab, stat='TSS')
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.