Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/juliastats/statistics.jl
The Statistics stdlib that ships with Julia.
https://github.com/juliastats/statistics.jl
julialang statistics
Last synced: 24 days ago
JSON representation
The Statistics stdlib that ships with Julia.
- Host: GitHub
- URL: https://github.com/juliastats/statistics.jl
- Owner: JuliaStats
- License: other
- Created: 2019-09-18T10:36:30.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-03-13T03:11:21.000Z (8 months ago)
- Last Synced: 2024-03-26T13:28:06.215Z (7 months ago)
- Topics: julialang, statistics
- Language: Julia
- Homepage: https://juliastats.org/Statistics.jl/dev/
- Size: 1.52 MB
- Stars: 63
- Watchers: 9
- Forks: 38
- Open Issues: 64
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Statistics.jl
[![Build status](https://github.com/JuliaStats/Statistics.jl/workflows/CI/badge.svg)](https://github.com/JuliaStats/Statistics.jl/actions?query=workflow%3ACI+branch%3Amaster)
Development repository for the Statistics standard library (stdlib) that ships with Julia.
#### Using the development version of Statistics.jl
If you want to develop this package, do the following steps:
- Clone the repo anywhere.
- In line 2 of the `Project.toml` file (the line that begins with `uuid = ...`), modify the UUID, e.g. change the `107` to `207`.
- Change the current directory to the Statistics repo you just cloned and start julia with `julia --project`.
- `import Statistics` will now load the files in the cloned repo instead of the Statistics stdlib.
- To test your changes, simply do `include("test/runtests.jl")`.If you need to build Julia from source with a git checkout of Statistics, then instead use `make DEPS_GIT=Statistics` when building Julia. The `Statistics` repo is in `stdlib/Statistics`, and created initially with a detached `HEAD`. If you're doing this from a pre-existing Julia repository, you may need to `make clean` beforehand.