Utils: Data transformation (Box-Cox, 1964)
Estimates the lambda value for data transformation
transf(response, f1, f2 = NA, f3 = NA, block = NA, line = NA, column = NA)
response
: Numerical vector containing the response of the experiment.f1
: Numeric or complex vector with factor 1 levelsf2
: Numeric or complex vector with factor 2 levelsf3
: Numeric or complex vector with factor 3 levelsblock
: Numerical or complex vector with blocksline
: Numerical or complex vector with linescolumn
: Numerical or complex vector with columnsReturns the value of lambda and/or data transformation approximation, according to Box-Cox (1964)
#================================================================ # Completely randomized design #================================================================ data("pomegranate") with(pomegranate, transf(WL,f1=trat)) #================================================================ # Randomized block design #================================================================ data(soybean) with(soybean, transf(prod, f1=cult, block=bloc)) #================================================================ # Completely randomized design in double factorial #================================================================ data(cloro) with(cloro, transf(resp, f1=f1, f2=f2)) #================================================================ # Randomized block design in double factorial #================================================================ data(cloro) with(cloro, transf(resp, f1=f1, f2=f2, block=bloco))
Box, G. E., Cox, D. R. (1964). An analysis of transformations. Journal of the Royal Statistical Society: Series B (Methodological), 26(2), 211-243.
Gabriel Danilo Shimizu, shimizu@uel.br
Leandro Simoes Azeredo Goncalves
Rodrigo Yudi Palhaci Marubayashi
Useful links