diff --git a/docs/src/index.md b/docs/src/index.md index e1e3fe2ef..627201d40 100644 --- a/docs/src/index.md +++ b/docs/src/index.md @@ -1,4 +1,4 @@ -# StatsBase.jl Documentation +# Getting Started ```@meta CurrentModule = StatsBase @@ -10,6 +10,20 @@ end *StatsBase.jl* is a Julia package that provides basic support for statistics. Particularly, it implements a variety of statistics-related functions, such as scalar statistics, high-order moment computation, counting, ranking, covariances, sampling, and empirical density estimation. +## Installation + +To install StatsBase through the Julia REPL, you can type `] add StatsBase` or: +```julia +using Pkg +Pkg.add("StatsBase") +``` + +To load the package, use the command: +``` +using StatsBase +``` + +## Available Features ```@contents Pages = ["weights.md", "scalarstats.md", "robust.md", "deviation.md", "cov.md", "counts.md", "ranking.md", "sampling.md", "empirical.md", "signalcorr.md", "misc.md", "statmodels.md", "transformations.md"]