## analyze()


Analyze a list of data and return statistics.


Usage


``` python
analyze(data)
```


## Parameters


`data: list`  
The data to analyze.


## Returns


`dict`  
A dictionary with analysis results.


## Examples

``` python
>>> analyze([10, 20, 30])
```

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