## analyze()


Run a basic statistical analysis on numeric data.


Usage

``` python
analyze(data)
```


## Parameters


`data: list[float]`  
A list of numeric values to analyze.


## Returns


`dict[str, float]`  
A dict with keys `mean`, `min`, `max`, and `count`.


## Examples


``` python
    >>> analyze([1.0, 2.0, 3.0])
```

    {'mean': 2.0, 'min': 1.0, 'max': 3.0, 'count': 3}
