forked from JuliaStats/MultivariateStats.jl
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add Documenter-based docs (index page) (JuliaStats#147)
- Loading branch information
Showing
3 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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). |