https://github.com/alphaville/multimodality
Check whether an empirical distribution is multimodal or has ridges using its sublevel sets
https://github.com/alphaville/multimodality
statistics
Last synced: 3 months ago
JSON representation
Check whether an empirical distribution is multimodal or has ridges using its sublevel sets
- Host: GitHub
- URL: https://github.com/alphaville/multimodality
- Owner: alphaville
- Created: 2026-04-01T15:44:31.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2026-04-01T16:36:36.000Z (3 months ago)
- Last Synced: 2026-04-01T21:23:46.825Z (3 months ago)
- Topics: statistics
- Language: Python
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Mutlimodality
This Python package estimates whether an empirical two-dimensional distribution
is unimodal. It computes a unimodality index. Here is an examlpe of use:
```python
results = mm.multimodality_analysis(x, y)
ua = mm.unimodality_analysis(results)
print(ua["unimodality_index"])
```