An open API service indexing awesome lists of open source software.

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

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"])
```