Distributions visualized
Project description
Distimate - Distributions visualized
Distimate approximates and plots common statistical functions from histograms.
Distimate can aggregate empirical distributions of random variables. The distributions are represented as histograms with user-defined bucket edges. This is especially useful when working with large datasets that can be aggregated to histograms at database level.
import distimate
import matplotlib.pyplot as plt
edges = [0, 1, 2, 5, 10, 15, 20, 50]
values = [291, 10, 143, 190, 155, 60, 90, 34, 27]
dist = distimate.Distribution.from_histogram(edges, values)
plt.title(f"x̃={dist.quantile(0.5):.2f}")
plt.xlim(0, 50)
plt.ylim(0, 1)
plt.plot(dist.cdf.x, dist.cdf.y, label="CDF")
plt.plot(dist.pdf.x, dist.pdf.y, label="PDF")
plt.legend(loc="lower right")
Features:
- Histogram creation and merging
- Probability density function (PDF)
- Cumulative distribution function (CDF or ECDF)
- Quantile (percentile) function
- Pandas integration.
Distimate is hosted at GitHub and it can be installed from PyPI.
Documentation
Distimate documentation from the docs/
directory can be read
online at Read the Docs.
License
Copyright 2020 Akamai Technologies, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Contributing
By submitting a contribution (the “Contribution”) to this project,
and for good and valuable consideration, the receipt and sufficiency of which
are hereby acknowledged, you (the “Assignor”) irrevocably convey, transfer,
and assign the Contribution to the owner of the repository (the “Assignee”),
and the Assignee hereby accepts, all of your right, title, and interest in and
to the Contribution along with all associated copyrights, copyright
registrations, and/or applications for registration and all issuances,
extensions and renewals thereof (collectively, the “Assigned Copyrights”).
You also assign all of your rights of any kind whatsoever accruing under
the Assigned Copyrights provided by applicable law of any jurisdiction,
by international treaties and conventions and otherwise throughout the world.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
distimate-0.1.tar.gz
(23.8 kB
view details)
Built Distribution
distimate-0.1-py3-none-any.whl
(16.3 kB
view details)
File details
Details for the file distimate-0.1.tar.gz
.
File metadata
- Download URL: distimate-0.1.tar.gz
- Upload date:
- Size: 23.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.3.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 924b6a30388f19d5b45df485ee54641ad53ad8f7b3bdc60e56ccdd6092f616f5 |
|
MD5 | 3f03f6ec4cf6511ebf8011046ff85d79 |
|
BLAKE2b-256 | 4bf8a6ed637dc675aeee4c029ae5c86c1dbf7e95bc974cacb8d6f100a2244f55 |
File details
Details for the file distimate-0.1-py3-none-any.whl
.
File metadata
- Download URL: distimate-0.1-py3-none-any.whl
- Upload date:
- Size: 16.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.3.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dffae636637ed91435ed19ceaabf2e9315cb1804135071b2b29f46e60e416f0a |
|
MD5 | f83632795d011f0de519f53bc03ec546 |
|
BLAKE2b-256 | 438239c1d61fd33462c024eec4337a9ec193277cda02441bee7ab23cf393ae88 |