
Run automated exploratory statistics for Gazepoint feature tables
Source:R/automated-statistics.R
run_gazepoint_automated_statistics.RdRuns simple exploratory group comparisons for numeric feature columns. The function selects one-way ANOVA when all groups pass Shapiro-Wilk checks and Kruskal-Wallis otherwise. It also performs pairwise post-hoc tests with multiplicity correction.
Usage
run_gazepoint_automated_statistics(
dat,
outcome_cols,
group_col,
alpha = 0.05,
p_adjust_method = "holm",
normality_alpha = 0.05,
min_group_n = 3
)