f1: Numeric or complex vector with factor 1 levels
f2: Numeric or complex vector with factor 2 levels
block: Numerical or complex vector with blocks
response: Numerical vector containing the response of the experiment.
norm: Error normality test (default is Shapiro-Wilk)
homog: Homogeneity test of variances (default is Bartlett)
alpha.f: Level of significance of the F test (default is 0.05)
alpha.t: Significance level of the multiple comparison test (default is 0.05)
quali: Defines whether the factor is quantitative or qualitative (qualitative)
names.fat: Name of factors
mcomp: Multiple comparison test (Tukey (default), LSD, Scott-Knott and Duncan)
grau: Polynomial degree in case of quantitative factor (default is 1). Provide a vector with two elements.
grau12: Polynomial degree in case of quantitative factor (default is 1). Provide a vector with n levels of factor 2, in the case of interaction f1 x f2 and qualitative factor 2 and quantitative factor 1.
grau21: Polynomial degree in case of quantitative factor (default is 1). Provide a vector with n levels of factor 1, in the case of interaction f1 x f2 and qualitative factor 1 and quantitative factor 2.
transf: Applies data transformation (default is 1; for log consider 0; angular for angular transformation)
constant: Add a constant for transformation (enter value)
geom: Graph type (columns or segments (For simple effect only))
theme: ggplot2 theme (default is theme_classic())
ylab: Variable response name (Accepts the expression() function)
xlab: Treatments name (Accepts the expression() function)
xlab.factor: Provide a vector with two observations referring to the x-axis name of factors 1 and 2, respectively, when there is an isolated effect of the factors. This argument uses parse.
legend: Legend title name
fill: Defines chart color (to generate different colors for different treatments, define fill = "trat")
angle: x-axis scale text rotation
textsize: font size
labelsize: label size
dec: number of cells
width.column: Width column if geom="bar"
width.bar: Width errorbar
family: font family
point: This function defines whether the point must have all points ("all"), mean ("mean"), standard deviation (default - "mean_sd") or mean with standard error ("mean_se") if quali= FALSE. For quali=TRUE, mean_sd and mean_se change which information will be displayed in the error bar.
addmean: Plot the average value on the graph (default is TRUE)
errorbar: Plot the standard deviation bar on the graph (In the case of a segment and column graph) - default is TRUE
CV: Plotting the coefficient of variation and p-value of Anova (default is TRUE)
sup: Number of units above the standard deviation or average bar on the graph
color: Column chart color (default is "rainbow")
posi: Legend position
ylim: y-axis scale
angle.label: label angle
Returns
The table of analysis of variance, the test of normality of errors (Shapiro-Wilk, Lilliefors, Anderson-Darling, Cramer-von Mises, Pearson and Shapiro-Francia), the test of homogeneity of variances (Bartlett or Levene), the test of independence of Durbin-Watson errors, the test of multiple comparisons (Tukey, LSD, Scott-Knott or Duncan) or adjustment of regression models up to grade 3 polynomial, in the case of quantitative treatments. The column chart for qualitative treatments is also returned.
Note
The order of the chart follows the alphabetical pattern. Please use scale_x_discrete from package ggplot2, limits argument to reorder x-axis. The bars of the column and segment graphs are standard deviation.
The function does not perform multiple regression in the case of two quantitative factors.
In the final output when transformation (transf argument) is different from 1, the columns resp and respo in the mean test are returned, indicating transformed and non-transformed mean, respectively.
Examples
#================================================# Example cloro#================================================library(AgroR)data(cloro)attach(cloro)FAT2DBC(f1, f2, bloco, resp, ylab="Number of nodules", legend ="Stages")FAT2DBC(f1, f2, bloco, resp, mcomp="sk", ylab="Number of nodules", legend ="Stages")#================================================# Example covercrops#================================================library(AgroR)data(covercrops)attach(covercrops)FAT2DBC(A, B, Bloco, Resp, ylab=expression("Yield"~(Kg~"100 m"^2)),legend ="Cover crops")FAT2DBC(A, B, Bloco, Resp, mcomp="sk", ylab=expression("Yield"~(Kg~"100 m"^2)),legend ="Cover crops")
References
Principles and procedures of statistics a biometrical approach Steel, Torry and Dickey. Third Edition 1997
Multiple comparisons theory and methods. Departament of statistics the Ohio State University. USA, 1996. Jason C. Hsu. Chapman Hall/CRC.