## analyze()


Analyze the given data and return summary statistics.


Usage


``` python
analyze(data)
```


## Parameters


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


## Returns


`dict`  
A dictionary with summary statistics.


## Examples

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

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