From d7a91c67ac73f2feaee3bcbb9a3cec25372fd388 Mon Sep 17 00:00:00 2001 From: Logan Kilpatrick <23kilpatrick23@gmail.com> Date: Sun, 5 Sep 2021 17:27:44 -0700 Subject: [PATCH 1/5] Add installation instructions --- docs/src/index.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/docs/src/index.md b/docs/src/index.md index e1e3fe2ef..e48067bc9 100644 --- a/docs/src/index.md +++ b/docs/src/index.md @@ -10,6 +10,21 @@ 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. +## Getting Started + +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 methods ```@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"] From b3260348075f5b45604a1d43049c28b48e689fd0 Mon Sep 17 00:00:00 2001 From: Logan Kilpatrick <23kilpatrick23@gmail.com> Date: Sun, 5 Sep 2021 17:29:16 -0700 Subject: [PATCH 2/5] Update header --- docs/src/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/index.md b/docs/src/index.md index e48067bc9..fcd461734 100644 --- a/docs/src/index.md +++ b/docs/src/index.md @@ -1,4 +1,4 @@ -# StatsBase.jl Documentation +# Getting Started ```@meta CurrentModule = StatsBase @@ -10,7 +10,7 @@ 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. -## Getting Started +## Installation To install StatsBase through the Julia REPL, you can type `] add StatsBase` or: From 34b97fb5489bbb9352fa1b67f9b7e129f6ee45e3 Mon Sep 17 00:00:00 2001 From: Carlos Parada Date: Tue, 22 Aug 2023 12:10:59 -0700 Subject: [PATCH 3/5] Update docs/src/index.md Co-authored-by: Milan Bouchet-Valat --- docs/src/index.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/src/index.md b/docs/src/index.md index fcd461734..276cf6713 100644 --- a/docs/src/index.md +++ b/docs/src/index.md @@ -13,7 +13,6 @@ end ## Installation To install StatsBase through the Julia REPL, you can type `] add StatsBase` or: - ```julia using Pkg Pkg.add("StatsBase") From 686064e9596e7b551e59862aa16d6b0051d0d6b6 Mon Sep 17 00:00:00 2001 From: Carlos Parada Date: Tue, 22 Aug 2023 12:11:17 -0700 Subject: [PATCH 4/5] Update docs/src/index.md Co-authored-by: Milan Bouchet-Valat --- docs/src/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/index.md b/docs/src/index.md index 276cf6713..1707c5750 100644 --- a/docs/src/index.md +++ b/docs/src/index.md @@ -23,7 +23,7 @@ To load the package, use the command: using StatsBase ``` -## Available methods +## 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"] From 7f18786370152535f8f1e0a705eab2be647d22fc Mon Sep 17 00:00:00 2001 From: Carlos Parada Date: Tue, 22 Aug 2023 12:11:23 -0700 Subject: [PATCH 5/5] Update docs/src/index.md Co-authored-by: Milan Bouchet-Valat --- docs/src/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/index.md b/docs/src/index.md index 1707c5750..627201d40 100644 --- a/docs/src/index.md +++ b/docs/src/index.md @@ -17,8 +17,8 @@ To install StatsBase through the Julia REPL, you can type `] add StatsBase` or: using Pkg Pkg.add("StatsBase") ``` -To load the package, use the command: +To load the package, use the command: ``` using StatsBase ```