
Perform a grid search over thresholds and return accuracy statistics for a given numeric cue
Source:R/fftrees_threshold_numeric_grid.R
fftrees_threshold_numeric_grid.RdPerform a grid search over thresholds and return accuracy statistics for a given numeric cue
Usage
fftrees_threshold_numeric_grid(
thresholds,
cue_v,
criterion_v,
directions = c(">", "<="),
goal.threshold = NULL,
sens.w = NULL,
my.goal = NULL,
my.goal.fun = NULL,
cost.each = NULL,
cost.outcomes = NULL
)Arguments
- thresholds
numeric. A vector of thresholds to consider.
- cue_v
numeric. Feature values.
- criterion_v
logical. A logical vector of (TRUE) criterion values.
- directions
character. Possible directions to consider.
- goal.threshold
A character string indicating the criterion to maximize when optimizing cue thresholds:
"acc"= overall accuracy,"bacc"= balanced accuracy,"wacc"= weighted accuracy,"dprime"= discriminability,"cost"= costs (based only oncost.outcomes, ascost.cuesare constant per cue). Default:goal.threshold = "bacc".- sens.w
numeric. Sensitivity weight parameter (from
0to1, for computingwacc). Default:sens.w = .50.- my.goal
Name of an optional, user-defined goal (as character string). Default:
my.goal = NULL.- my.goal.fun
User-defined goal function (with 4 arguments
hi fa mi cr). Default:my.goal.fun = NULL.- cost.each
numeric. A constant cost value to add to each value (e.g., the cost of the cue).
- cost.outcomes
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, respectively, in some common currency. For instance,
cost.outcomes = listc("hi" = 0, "fa" = 10, "mi" = 20, "cr" = 0)means that a false alarm and miss cost10and20units, respectively, while correct decisions have no cost.
See also
fftrees_threshold_factor_grid for factor cues.