## format_output()


Format an analysis result as a readable string.


Usage


``` python
format_output(result)
```


## Parameters


`result: dict`  
The result dictionary to format.


## Returns


`str`  
A formatted string representation of the result.


## Examples

``` python
>>> format_output({"mean": 2.0, "count": 3})
```

'mean=2.0, count=3'
