Compute relative standard error (RSE%) for parameter estimates
Source:R/extendr-wrappers.R
compute_rse.RdCalculates the RSE% based on the specified transformation and parameter type.
For LogNormal Omega/Sigma, uses sqrt(exp(se^2) - 1) * 100.
For other transforms, uses se / |estimate| * 100.
Arguments
- estimate
The parameter estimate(s), can be a vector
- se
The standard error(s) of the estimate(s), can be a vector
- param_type
Parameter type(s), can be a vector: "Theta", "Omega", or "Sigma"
- transform
Transformation type(s), can be a vector: "LogNormal", "AddErr", "Proportional", or "Identity". Defaults to "Identity".