Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/juliastats/statskit.jl
Convenience meta-package to load essential packages for statistics
https://github.com/juliastats/statskit.jl
batteries-included julia meta-package statistics
Last synced: 22 days ago
JSON representation
Convenience meta-package to load essential packages for statistics
- Host: GitHub
- URL: https://github.com/juliastats/statskit.jl
- Owner: JuliaStats
- License: other
- Created: 2014-01-19T00:24:40.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2022-10-17T16:00:59.000Z (about 2 years ago)
- Last Synced: 2024-08-04T17:08:05.707Z (3 months ago)
- Topics: batteries-included, julia, meta-package, statistics
- Language: Julia
- Homepage:
- Size: 29.3 KB
- Stars: 139
- Watchers: 20
- Forks: 16
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
StatsKit.jl
========[![Build status](https://github.com/JuliaStats/StatsKit.jl/workflows/CI/badge.svg)](https://github.com/JuliaStats/StatsKit.jl/actions?query=workflow%3ACI+branch%3Amaster)
This is a convenience meta-package which allows loading essential packages for statistics in one command:
```julia
using StatsKit
```Currently this loads the [Statistics](https://docs.julialang.org/en/v1/stdlib/Statistics/)
standard library module, and the following packages:* [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)
* [MixedModels](https://github.com/JuliaStats/MixedModels.jl)
* [StatsBase](https://github.com/JuliaStats/StatsBase.jl)
* [ShiftedArrays](https://github.com/JuliaArrays/ShiftedArrays.jl)
* [TimeSeries](https://github.com/JuliaStats/TimeSeries.jl)This package is intended for users of statistics packages who want to get started with one import. Packages themselves should continue
to list individual packages in they dependencies rather than `StatsKit` as a whole.