Skip to content

Commit 0e8e4aa

Browse files
author
Carlos Parada
authored
Merge pull request #715 from logankilpatrick/patch-2
Add installation instructions
2 parents 8696d51 + 7f18786 commit 0e8e4aa

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

docs/src/index.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# StatsBase.jl Documentation
1+
# Getting Started
22

33
```@meta
44
CurrentModule = StatsBase
@@ -10,6 +10,20 @@ end
1010

1111
*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.
1212

13+
## Installation
14+
15+
To install StatsBase through the Julia REPL, you can type `] add StatsBase` or:
16+
```julia
17+
using Pkg
18+
Pkg.add("StatsBase")
19+
```
20+
21+
To load the package, use the command:
22+
```
23+
using StatsBase
24+
```
25+
26+
## Available Features
1327

1428
```@contents
1529
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"]

0 commit comments

Comments
 (0)