statsmodels.tools.eval_measures.bias
statsmodels.tools.eval_measures.bias(x1, x2, axis=0) [source]
bias, mean error Parameters:
x1, x2 : array_like The performance measure depends on the difference between these two arrays. axis : int axis along which the summary statistic is calculated Returns:
bias : ndarray or float bias, or mean difference along given axis. Notes If x1 and x2 have different shapes, then they need to broadcast. This uses numpy.asanyarray to convert the input. Wh