
Aggregate statistics across discourse.object runs
Source:R/fct_get_stats_parallel.R
get_stats_parallel.Rd
Computes summary metrics (mean, median, standard deviation, minimum, and maximum) for each numeric output component across multiple `discourse.object` results.
Value
A `list` of `data.frame` objects. Each data.frame corresponds to one numeric component (e.g., `reg`, `se`, `cor`, `mean`, `sd`), and contains columns:
- mean
Numeric. Mean of the component across runs.
- med
Numeric. Median of the component across runs.
- sd
Numeric. Standard deviation across runs.
- min
Numeric. Minimum value observed across runs.
- max
Numeric. Maximum value observed across runs.
Examples
if (FALSE) { # \dontrun{
# Single-threaded example
result <- parallel_lm(args = ..., ...)
get_stats_parallel(result)
} # }