optim.boxcox {BIGL} | R Documentation |
Find optimal Box-Cox transformation parameters
Description
Find optimal Box-Cox transformation parameters
Usage
optim.boxcox(value, fac, shift = FALSE)
Arguments
value |
Response variable in the data, e.g. |
fac |
Factor indicating groups of replicates, e.g.
|
shift |
Whether to use 2-parameter Box-Cox transformation. Input may be
|
Value
Numeric vector with power and shift parameter in that order.
Examples
data <- subset(directAntivirals, experiment == 1)
optim.boxcox(data$effect, interaction(data$d1, data$d2))
[Package BIGL version 1.9.2 Index]