## compute_stats()


Compute basic statistics.


Usage


``` python
compute_stats(values)
```


Returns μ (mean) and σ (standard deviation).

Mathematical notation: μ = Σxᵢ/n

Set operations: A ∪ B, A ∩ B, A ⊆ B

Integral: ∫ f(x)dx, Product: ∏ xᵢ


## Parameters


`values: list`  
Numeric values.


## Returns


`dict`  
Statistics dictionary with μ and σ.
