powered by
Performs unadjusted pairwise t-tests following a significant ANOVA.
LSDTest(modelo, alpha = 0.05)
An object of class "comparaciones" with LSD results.
"comparaciones"
An object of class aov or lm.
aov
lm
Significance level (default is 0.05).
Advantages: - Very powerful when assumptions are met. - Simple and easy to interpret.
Disadvantages: - High risk of Type I error without correction. - Not recommended if many comparisons are made.
Fisher, R. A. (1935). The Design of Experiments. Oliver & Boyd.
data(d_e, package = "Analitica") mod <- aov(Sueldo_actual ~ as.factor(labor), data = d_e) resultado <- LSDTest(mod) summary(resultado) plot(resultado)
Run the code above in your browser using DataLab