def amean_std(values: t.List[float]) -> float: """ Calculates the arithmetic mean. """ return sp.std(values)