Skip to content

Commit

Permalink
Merge pull request #715 from logankilpatrick/patch-2
Browse files Browse the repository at this point in the history
Add installation instructions
  • Loading branch information
ParadaCarleton committed Aug 22, 2023
2 parents 8696d51 + 7f18786 commit 0e8e4aa
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion docs/src/index.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# StatsBase.jl Documentation
# Getting Started

```@meta
CurrentModule = StatsBase
Expand All @@ -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"]
Expand Down

0 comments on commit 0e8e4aa

Please sign in to comment.