Half-logistic distribution

See https://en.wikipedia.org/wiki/Half-logistic_distribution.

This implementation includes location and scale parameters.

mpsci.distributions.half_logistic.cdf(x, loc=0, scale=1)

Cumulative distribution function for the half-logistic distribution.

mpsci.distributions.half_logistic.invcdf(p, loc=0, scale=1)

Inverse of the CDF for the half-logistic distribution.

This function is also known as the quantile function.

mpsci.distributions.half_logistic.invsf(p, loc=0, scale=1)

Inverse of the survival function for the half-logistic distribution.

mpsci.distributions.half_logistic.logpdf(x, loc=0, scale=1)

Logarithm of the PDF for the half-logistic distribution.

mpsci.distributions.half_logistic.pdf(x, loc=0, scale=1)

Probability density function for the half-logistic distribution.

mpsci.distributions.half_logistic.sf(x, loc=0, scale=1)

Survival function for the half-logistic distribution.

mpsci.distributions.half_logistic.support(loc=0, scale=1)

Support of the half-logistic distribution.