format_output()
Format an analysis result as a readable string.
Usage
format_output(result)Parameters
result: dict-
The result dictionary to format.
Returns
str-
A formatted string representation of the result.
Examples
>>> format_output({"mean": 2.0, "count": 3})
'mean=2.0, count=3'