Versions in this module Expand all Collapse all v1 v1.0.0 Nov 4, 2025 Changes in this version + func CorrMatrix(df *dataframe.DataFrame, method string) (*dataframe.DataFrame, error) + func CovMatrix(df *dataframe.DataFrame) (*dataframe.DataFrame, error) + func Covariance(x, y []float64) float64 + func IQR(values []float64) float64 + func Kendall(x, y []float64) (float64, error) + func Kurtosis(values []float64) float64 + func Mean(values []float64) float64 + func Median(values []float64) float64 + func Mode(values []float64) (float64, int) + func Pearson(x, y []float64) (float64, error) + func Percentile(values []float64, p float64) float64 + func Quantile(values []float64, q float64) float64 + func Range(values []float64) float64 + func Skew(values []float64) float64 + func Spearman(x, y []float64) (float64, error) + func Std(values []float64) float64 + func Var(values []float64) float64 + type DescriptiveStats struct + Count int + Kurtosis float64 + Max float64 + Mean float64 + Median float64 + Min float64 + Q25 float64 + Q75 float64 + Skewness float64 + Std float64 + func Describe(values []float64) DescriptiveStats