xarray_einstats.stats.XrContinuousRV.rvs#

XrContinuousRV.rvs(*args, size=1, random_state=None, dims=None, apply_kwargs=None, **kwargs)#

Method wrapping scipy.stats.rv_discrete.rvs with xarray.apply_ufunc

Usage examples available at Probability distributions.

Parameters
argsscalar or array_like, optional

Passed to the scipy distribution after broadcasting.

sizeint of sequence of ints, optional

The number of samples to draw per array element. If the distribution parameters broadcast to a (4, 10, 6) shape and size=(5, 3) then the output shape is (5, 3, 4, 10, 6). This differs from the scipy implementation. Here, all broadcasting and alignment is done for you, you give the dimensions the right names, and broadcasting just happens. If size followed scipy behaviour, you’d be forced to broadcast to provide a valid value which would defeat the xarray_einstats goal of handling all alignment and broadcasting for you.

random_stateoptional

Passed as is to the wrapped scipy distribution

dimsstr or sequence of str, optional

Dimension names for the dimensions created due to size. If present it must have the same length as size.

apply_kwargsdict, optional

Passed to xarray.apply_ufunc

kwargsdict, optional

Passed to the scipy distribution after broadcasting using the same key.