A reciprocal inverse Gaussian continuous random variable.
As an instance of the rv_continuous class, recipinvgauss object inherits from it
a collection of generic methods (see below for the full list),
and completes them with details specific for this particular distribution.
recipinvgauss takes mu as a shape parameter for \(\mu\).
The probability density above is defined in the "standardized" form. To shift
and/or scale the distribution use the loc and scale parameters.
Specifically, recipinvgauss.pdf(x,mu,loc,scale) is identically
equivalent to recipinvgauss.pdf(y,mu)/scale with
y=(x-loc)/scale. Note that shifting the location of a distribution
does not make it a "noncentral" distribution; noncentral generalizations of
some distributions are available in separate classes.
Alternatively, the distribution object can be called (as a function)
to fix the shape, location and scale parameters. This returns a "frozen"
RV object holding the given parameters fixed.
Freeze the distribution and display the frozen pdf: