statsmodels.miscmodels.ordinal_model.OrderedModel.prob#

OrderedModel.prob(low, upp)[source]#

Interval probability

Probability that value is in interval (low, upp], computed as

prob = cdf(upp) - cdf(low)

Parameters:
lowarray_like

Lower bound for interval

upparray_like

Upper bound for interval

Returns:
float or ndarray

Probability that value falls in interval (low, upp]