pub fn f_oneway_py(
py: Python<'_>,
args: &Bound<'_, PyTuple>,
) -> PyResult<Py<PyAny>>Expand description
One-way ANOVA (Analysis of Variance)
Tests whether the means of multiple groups are equal.
Parameters:
- *args: Variable number of arrays, each representing a group
Returns:
- Dict with ‘f_statistic’, ‘pvalue’, ‘df_between’, ‘df_within’, ‘ss_between’, ‘ss_within’, ‘ms_between’, ‘ms_within’