-
Notifications
You must be signed in to change notification settings - Fork 194
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move all content to docstrings when they were missing or incomplete. Fix many details in docstrings. Improve in particular docstrings for sampling algorithms, analysis of signals, and stats models.
- Loading branch information
Showing
46 changed files
with
896 additions
and
1,693 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
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
This file was deleted.
Oops, something went wrong.
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,32 @@ | ||
using Documenter, StatsBase | ||
|
||
makedocs( | ||
format = :html, | ||
sitename = "StatsBase.jl", | ||
# options | ||
modules = [StatsBase], | ||
pages = ["index.md", | ||
"weights.md", | ||
"means.md", | ||
"scalarstats.md", | ||
"robust.md", | ||
"deviation.md", | ||
"cov.md", | ||
"counts.md", | ||
"ranking.md", | ||
"sampling.md", | ||
"empirical.md", | ||
"signalcorr.md", | ||
"misc.md", | ||
"statmodels.md"] | ||
) | ||
|
||
deploydocs( | ||
# options | ||
repo = "github.com/JuliaStats/StatsBase.jl.git", | ||
target = "build", | ||
julia = "nightly", | ||
osname = "linux", | ||
deps = nothing, | ||
make = nothing | ||
) |
Oops, something went wrong.