analyze()
Analyze the given data and return summary statistics.
Usage
analyze(data)Parameters
data: list-
A list of numeric values to analyze.
Returns
dict-
A dictionary with summary statistics.
Examples
>>> analyze([1, 2, 3])
{'mean': 2.0, 'count': 3}