View source: R/ParameterTransformation.R
UniUnmapParameters | R Documentation |
Transform distribution parameters into the unrestricted parameters. The unrestricted vector of parameters is updated using the GAS recursion.
UniUnmapParameters(Theta, Dist)
Theta |
|
Dist |
|
The order of the parameters is generally: location
, scale
, skewness
, shape
, shape2
.
When the distribution defined by Dist
does not have, say, the shape
parameter, this should be simply omitted.
See also DistInfo for specific distributions.
A numeric
vector of parameters.
Leopoldo Catania
# Unmap parameters for the Student-t distribution
library("GAS")
Dist = "std"
# Vector of parameters such that,
# Theta = c(0, 1.5 ,7), i.e., location = 0, scale = 1.5,
# degrees of freedom = 7.
Theta = c(0.1, 1.5, 7)
Theta_tilde = UniUnmapParameters(Theta, Dist)
Theta_tilde
# It works.
all(abs(UniMapParameters(Theta_tilde, Dist) - Theta) < 1e-16)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.