Skip to main content

Module functions

Module functions 

Source
Expand description

Auto-generated module

🤖 Generated with SplitRS

Functions§

correlation_py
Calculate correlation coefficient
covariance_py
Calculate covariance
describe_py
Compute descriptive statistics - uses optimized implementations Returns dict with mean, std, var, min, max, median, count
iqr_py
Calculate interquartile range (IQR) using optimized partial sort
mean_py
Calculate mean - optimized with 8-way unrolling and multiple accumulators
median_py
Calculate median using optimized partial sort (O(n) instead of O(n log n))
percentile_py
Calculate percentile using optimized partial sort q: percentile value (0-100)
std_py
Calculate standard deviation - optimized two-pass with multi-accumulator
ttest_1samp_py
One-sample t-test
ttest_ind_py
Two-sample independent t-test
var_py
Calculate variance - optimized two-pass with multi-accumulator