View source: R/transf_function.R
transf | R Documentation |
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 levels |
f2 |
Numeric or complex vector with factor 2 levels |
f3 |
Numeric or complex vector with factor 3 levels |
block |
Numerical or complex vector with blocks |
line |
Numerical or complex vector with lines |
column |
Numerical or complex vector with columns |
Returns the value of lambda and/or data transformation approximation, according to Box-Cox (1964)
Gabriel Danilo Shimizu, shimizu@uel.br
Leandro Simoes Azeredo Goncalves
Rodrigo Yudi Palhaci Marubayashi
Box, G. E., Cox, D. R. (1964). An analysis of transformations. Journal of the Royal Statistical Society: Series B (Methodological), 26(2), 211-243.
#================================================================
# 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))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.