-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from JuliaStats/nl/revive
Add essential packages for statistics
- Loading branch information
Showing
3 changed files
with
47 additions
and
4 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 |
---|---|---|
@@ -1,6 +1,23 @@ | ||
Stats.jl | ||
======== | ||
|
||
Loads other statistics packages: | ||
This is a convenience meta-package which allows loading essential packages for statistics in one command: | ||
```julia | ||
using Stats | ||
``` | ||
|
||
* StatsBase | ||
Currently included packages are: | ||
* [Bootstrap](https://github.com/juliangehring/Bootstrap.jl) | ||
* [CategoricalArrays](https://github.com/JuliaData/CategoricalArrays.jl) | ||
* [Clustering](https://github.com/JuliaStats/Clustering.jl) | ||
* [CSV](https://github.com/JuliaData/CSV.jl) | ||
* [DataFrames](https://github.com/JuliaData/DataFrames.jl) | ||
* [Distances](https://github.com/JuliaStats/Distances.jl) | ||
* [Distributions](https://github.com/JuliaStats/Distributions.jl) | ||
* [GLM](https://github.com/JuliaStats/GLM.jl) | ||
* [HypothesisTests](https://github.com/JuliaStats/HypothesisTests.jl) | ||
* [KernelDensity](https://github.com/JuliaStats/KernelDensity.jl) | ||
* [Loess](https://github.com/JuliaStats/Loess.jl) | ||
* [MultivariateStats](https://github.com/JuliaStats/MultivariateStats.jl) | ||
* [StatsBase](https://github.com/JuliaStats/StatsBase.jl) | ||
* [TimeSeries](https://github.com/JuliaStats/TimeSeries.jl) |
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 |
---|---|---|
@@ -1,3 +1,16 @@ | ||
julia 0.2- | ||
StatsBase | ||
julia 0.6 | ||
Reexport | ||
Bootstrap | ||
CategoricalArrays | ||
Clustering | ||
CSV | ||
DataFrames | ||
Distances | ||
Distributions | ||
GLM | ||
HypothesisTests | ||
KernelDensity | ||
Loess | ||
MultivariateStats | ||
StatsBase | ||
TimeSeries |
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 |
---|---|---|
@@ -1,4 +1,17 @@ | ||
module Stats | ||
using Reexport | ||
@reexport using Bootstrap | ||
@reexport using CategoricalArrays | ||
@reexport using Clustering | ||
@reexport using CSV | ||
@reexport using DataFrames | ||
@reexport using Distances | ||
@reexport using Distributions | ||
@reexport using GLM | ||
@reexport using HypothesisTests | ||
@reexport using KernelDensity | ||
@reexport using Loess | ||
@reexport using MultivariateStats | ||
@reexport using StatsBase | ||
@reexport using TimeSeries | ||
end |