Performs a grid search over factor and returns accuracy statistics for a given factor cue
threshold_factor_grid(thresholds = NULL, cue.v = NULL, criterion.v = NULL,
directions = "=", sens.w = 0.5, cost.outcomes = list(hi = 0, fa = 1, mi
= 1, cr = 0), cost.each = 0, goal.threshold = "bacc")
numeric. A vector of factor thresholds to consider
numeric. Feature values
logical. Criterion values
character. Character vector of threshold directions to consider.
numeric.
list. A list of length 4 with names 'hi', 'fa', 'mi', and 'cr' specifying the costs of a hit, false alarm, miss, and correct rejection rspectively. E.g.; cost.outcomes = listc("hi" = 0, "fa" = 10, "mi" = 20, "cr" = 0)
means that a false alarm and miss cost 10 and 20 respectively while correct decisions have no cost.
numeric.
character.