Command line utilities for statistics, odds, and probabilities
Project description
pythodds
A command-line utility and Python library for calculating statistics, odds, and probabilities.
Features
- Binomial Distribution: Calculate PMF, CDF, and survival functions for binomial distributions
- Birthday Problem: Compute collision probabilities for uniform and non-uniform pools, find minimum group sizes, and generate probability tables
- Command-line Interface: Easy-to-use CLI tools (
binomandbirthdaycommands) - Pure Python: No external dependencies
Installation
Install from PyPI:
pip install pythodds
Or install from source:
git clone https://github.com/ncarsner/pythodds.git
cd pythodds
pip install -e .
Usage
Command Line
binom — Binomial Distribution
# Calculate binomial distribution probabilities
binom -n 10 -k 3 -p 0.4
# Specify a target and minimum probability threshold
binom -n 100 -k 30 -p 0.35 --target 40 --min-prob 0.05
birthday — Birthday Problem Collision Probability
Computes the probability that at least two items in a group share the same value when drawn from a pool of equally-likely possibilities. Defaults to a pool size of 365.25 (calendar days).
# P(duplicate birthday) in a group of 23 people
birthday -n 23
# Find the minimum group size to reach 50% collision probability
birthday --target-prob 0.50
# Print a probability table for group sizes 1–40
birthday --range 1 40
# Custom pool size (e.g. 7-digit phone numbers)
birthday -p 10_000_000 -n 1180
# Non-uniform pool via relative weights
birthday --group-size 30 --weights 0.10,0.15,0.20,0.30,0.25
# Output as JSON or CSV
birthday --range 1 60 --format json
birthday --range 1 60 --format csv
Options:
| Flag | Long form | Description |
|---|---|---|
-p |
--pool-size |
Pool size — number of equally-likely outcomes (default: 365.25) |
-n |
--group-size |
Compute collision probability for exactly this group size |
-t |
--target-prob |
Find the minimum group size reaching this probability |
-r |
--range MIN MAX |
Print a probability table for group sizes MIN through MAX |
-w |
--weights |
Comma-separated relative frequencies for a non-uniform pool |
-f |
--format |
Output format: table (default), json, or csv |
-P |
--precision |
Decimal places for printed probabilities (default: 6) |
Python Library
Binomial Distribution
from src.utils.binomial_distribution import binomial_pmf, binomial_cdf_le, binomial_cdf_ge
# P(X = 3) for Binomial(n=10, p=0.4)
pmf = binomial_pmf(10, 3, 0.4)
# P(X <= 3) for Binomial(n=10, p=0.4)
cdf = binomial_cdf_le(10, 3, 0.4)
# P(X >= 3) for Binomial(n=10, p=0.4)
survival = binomial_cdf_ge(10, 3, 0.4)
Birthday Problem
from src.utils.birthday_problem import (
collision_prob_uniform,
collision_prob_nonuniform,
min_group_for_prob,
expected_duplicate_pairs,
)
# P(duplicate) for 23 people in a pool of 365.25
prob = collision_prob_uniform(23, 365.25)
# Minimum group size to reach 50% collision probability
n = min_group_for_prob(0.50, 365.25)
# P(duplicate) with a non-uniform pool
prob_nu = collision_prob_nonuniform(30, [0.10, 0.15, 0.20, 0.30, 0.25])
# Expected number of duplicate pairs
pairs = expected_duplicate_pairs(23, 365.25)
Development
Clone the repository and install in editable mode:
git clone https://github.com/ncarsner/pythodds.git
cd pythodds
pip install -e .
License
This project is licensed under the MIT License - see the LICENSE file for details.
Author
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pythodds-0.4.0.tar.gz.
File metadata
- Download URL: pythodds-0.4.0.tar.gz
- Upload date:
- Size: 34.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e53945a519ec54eb92d28f2174d2b1b70d4058623a3fa4101887b936c154d6fd
|
|
| MD5 |
00dc453ec2fdfe4734ee58b2d4ffaaf4
|
|
| BLAKE2b-256 |
17723273dad2a7444e084bb0893455574bec8ed75163e33ba0fdb96c576e1a03
|
File details
Details for the file pythodds-0.4.0-py3-none-any.whl.
File metadata
- Download URL: pythodds-0.4.0-py3-none-any.whl
- Upload date:
- Size: 12.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
033d1d2cf8173d057027cf73df80af88397c364ab1d8cfedae357384d3b9da7b
|
|
| MD5 |
29a6e35d62b4574965131595873bf9d8
|
|
| BLAKE2b-256 |
965b20215c44db9de75598052fabbce5e4672a2fa5374ab427031fee05a26398
|