Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/timvwese/powerlaws.jl
Fit data to power-law distributions in Julia.
https://github.com/timvwese/powerlaws.jl
Last synced: 3 days ago
JSON representation
Fit data to power-law distributions in Julia.
- Host: GitHub
- URL: https://github.com/timvwese/powerlaws.jl
- Owner: TimVWese
- License: other
- Created: 2024-04-23T15:11:47.000Z (7 months ago)
- Default Branch: master
- Last Pushed: 2024-06-06T11:49:32.000Z (5 months ago)
- Last Synced: 2024-06-07T10:19:11.911Z (5 months ago)
- Language: Julia
- Homepage: https://timvwese.github.io/PowerLaws.jl/dev/
- Size: 197 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PowerLaws.jl
[![Build Status](https://github.com/TimVWese/PowerLaws.jl/actions/workflows/CI.yml/badge.svg?branch=master)](https://github.com/TimVWese/NetworkJumpProcesses.jl/actions/workflows/CI.yml?query=branch%3Amaster)
[![](https://img.shields.io/badge/docs-dev-blue.svg)](https://timvwese.github.io/PowerLaws.jl/dev/)This package is implemented according to [POWER-LAW DISTRIBUTIONS IN EMPIRICAL DATA](http://arxiv.org/pdf/0706.1062v2.pdf)
This is a maintained fork of the archive [PowerLaws.jl](https://github.com/johnybx/PowerLaws.jl).
Currently, the functionality replicates the original package, but with some compatibility upgrades, and modernised package structure.
This will probably change in the future.
Braking changes are however introduced by renaming structs and functions:
- `powerlaw_con` -> `ContinuousPowerLaw`
- `powerlaw_dis` -> `DiscretePowerLaw`
- `estimate_xmin` -> `estimate_parameters`
- `compare_distributions` -> `DistributionComparison`This package is not (yet) registered, but can be installed with the following command:
```julia
using Pkg
Pkg.add(url="https://www.github.com/TimVWese/PowerLaws.jl")
```**Inpired by python** [powerlaw package](https://pypi.python.org/pypi/powerlaw)
**and R** [poweRlaw package](http://arxiv.org/pdf/1407.3492v1.pdf)