get_output
transforms the input \(\boldsymbol x\) to the observed
data \(\boldsymbol y\) given the transformation vector \(\tau =
(\mu_x(\boldsymbol \beta), \sigma_x(\boldsymbol \beta), \gamma, \alpha,
\delta)\).
This is the inverse of get_input
.
get_output(x, tau, return.z = FALSE)
A numeric object of same size/dimension as input x
.
If return.z = TRUE
, then it returns a list with 2 vectors
shifted and scaled input \(\boldsymbol z\),
transformed output data \(\boldsymbol y\), which has a Lambert W \(\times\) F distribution.
a numeric vector of data values.
named vector \(\tau\) which defines the variable transformation.
Must have at least 'mu_x'
and 'sigma_x'
element; see
complete_tau
for details.
should the shifted and scaled output also be returned?
Default: FALSE
.
get_input
; Gaussianize
with argument inverse = TRUE
.