diff --git a/src/Stats.jl b/src/Stats.jl index 5243e3d..ad231c3 100644 --- a/src/Stats.jl +++ b/src/Stats.jl @@ -1,4 +1,70 @@ -using StatsBase - module Stats + using StatsBase + + export WeightVec, + weights, + geomean, + harmmean, + trimmean, + wmean, + skewness, + kurtosis, + variation, + sem, + mad, + middle, + midrange, + range, + percentile, + iqr, + nquantile, + mode, + modes, + summarystats, + describe, + addcounts!, + counts, + proportions, + countmap, + proportionmap, + ordinalrank, + competerank, + denserank, + tiedrank, + autocov!, + autocov, + autocor!, + autocor, + crosscov!, + crosscov, + crosscor!, + crosscor, + pacf!, pacf, + corspearman, + corkendall, + samplepair, + sample, + wsample, + ecdf, + kde, + rle, + inverse_rle, + indexmap, + levelsmap, + findat, + indicatormat, + StatisticalModel, + RegressionModel, + coef, + coeftable, + confint, + deviance, + loglikelihood, + nobs, + stderr, + vcov, + predict, + predict!, + residuals, + model_response end