c_parametrizations | R Documentation |
Convert between parametrizations of the c parameter of the SDM distribution
c_sqrtexp2bessel(c, kappa)
c_bessel2sqrtexp(c, kappa)
c |
Vector of memory strength values |
kappa |
Vector of precision values |
c_bessel2sqrtexp
converts the memory strength parameter (c)
from the bessel parametrization to the sqrtexp parametrization,
c_sqrtexp2bessel
converts from the sqrtexp parametrization to the
bessel parametrization.
See the online article for details on the
parameterization. The sqrtexp parametrization is the default in the
bmm
package.
A numeric vector of the same length as c
and kappa
.
c_bessel <- c_sqrtexp2bessel(c = 4, kappa = 3)
c_sqrtexp <- c_bessel2sqrtexp(c = c_bessel, kappa = 3)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.