
Classify descriptive Gazepoint EDA response patterns
Source:R/external-eda-method-bridges.R
classify_gazepoint_eda_response_pattern.RdClassifies descriptive EDA response patterns from an EDA/SCR feature column. The labels are intended for quality-control and descriptive reporting only. They do not infer emotion, valence, stress, trust, preference, cognition, or diagnosis.
Usage
classify_gazepoint_eda_response_pattern(
data,
response_col = NULL,
group_cols = NULL,
summary_function = c("max_abs", "mean_abs", "median_abs"),
no_response_threshold = 0.01,
low_response_threshold = 0.05,
moderate_response_threshold = 0.2
)Arguments
- data
A data frame containing EDA/SCR values.
- response_col
Optional response feature column. If omitted, the helper searches for common SCR/EDA response columns and then
GSR_US_PHASICorGSR_US.- group_cols
Optional grouping columns.
- summary_function
Summary used within each group.
- no_response_threshold
Absolute response threshold for
no_detectable_response.- low_response_threshold
Upper threshold for
low_response.- moderate_response_threshold
Upper threshold for
moderate_response.