analyze()
Run a basic statistical analysis on numeric data.
Usage
analyze(data)Parameters
data: list[float]-
A list of numeric values to analyze.
Returns
dict[str, float]-
A dict with keys
mean,min,max, andcount.
Examples
>>> analyze([1.0, 2.0, 3.0])
{'mean': 2.0, 'min': 1.0, 'max': 3.0, 'count': 3}