statsmodels.tools.eval_measures.maxabs¶
-
statsmodels.tools.eval_measures.maxabs(x1, x2, axis=
0)[source]¶ maximum absolute error
- Parameters:¶
- Returns:¶
maxabs – maximum absolute difference along given axis.
- Return type:¶
ndarray or float
Notes
If
x1andx2have different shapes, then they need to broadcast. This usesnumpy.asanyarrayto convert the input. Whether this is the desired result or not depends on the array subclass.