Compute confidence intervals/bands and p-values after a transformation
transformCIBP(
estimate,
se,
iid,
null,
conf.level,
nsim.band,
seed,
type,
min.value,
max.value,
ci,
band,
p.value
)[numeric matrix] the estimate value before transformation.
[numeric matrix] the standard error before transformation.
[numeric array] the iid decomposition before transformation.
[numeric] the value of the estimate (before transformation) under the null hypothesis.
[numeric, 0-1] Level of confidence.
[integer, >0] the number of simulations used to compute the quantiles for the confidence bands.
[integer, >0] seed number set before performing simulations for the confidence bands.
[character] the transforamtion.
Can be "log", "loglog", "cloglog", or "atanh" (Fisher transform).
[numeric] if not NULL and the lower bound of the confidence interval is below min,
it will be set at min.
[numeric] if not NULL and the lower bound of the confidence interval is below max,
it will be set at max.
[logical] should confidence intervals be computed.
[logical] should confidence bands be computed.
[logical] should p-values be computed.
The iid decomposition must have dimensions [n.prediction,time,n.obs] while estimate and se must have dimensions [n.prediction,time].