Skip to content

Commit

Permalink
add Documenter-based docs (index page) (JuliaStats#147)
Browse files Browse the repository at this point in the history
  • Loading branch information
wildart authored Mar 13, 2021
1 parent d24eba5 commit febc53f
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 0 deletions.
7 changes: 7 additions & 0 deletions docs/Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[deps]
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
MultivariateStats = "6f286f6a-111f-5878-ab1e-185364afe411"
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"

[compat]
Documenter = "0.26"
15 changes: 15 additions & 0 deletions docs/make.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
using Documenter, MultivariateStats, StatsBase, Statistics, Random, LinearAlgebra

if Base.HOME_PROJECT[] !== nothing
Base.HOME_PROJECT[] = abspath(Base.HOME_PROJECT[])
end

makedocs(
sitename = "MultivariateStats.jl",
modules = [MultivariateStats],
pages = ["index.md"]
)

deploydocs(
repo = "github.com/JuliaStats/MultivariateStats.jl.git"
)
19 changes: 19 additions & 0 deletions docs/src/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# MultivariateStats.jl Documentation

```@meta
CurrentModule = MultivariateStats
DocTestSetup = quote
using Statistics
using Random
end
```

[MultivariateStats.jl](https://github.com/JuliaStats/MultivariateStats.jl) is a Julia package for multivariate statistical analysis. It provides a rich set of useful analysis techniques, such as PCA, CCA, LDA, ICA, etc.


```@contents
Pages = []
Depth = 2
```

**Notes:** All methods implemented in this package adopt the column-major convention of JuliaStats: in a data matrix, each column corresponds to a sample/observation, while each row corresponds to a feature (variable or attribute).

0 comments on commit febc53f

Please sign in to comment.