## analyze()


Analyze a list of values and return summary statistics.


Usage


``` python
analyze(data)
```


## Parameters


`data: list`  
A list of numeric values to analyze.


## Returns


`dict`  
A dictionary containing summary statistics such as mean and count.


## Examples

``` python
>>> analyze([1, 2, 3])
```

{'mean': 2.0, 'count': 3}
