dbc.ad.Rd
Statistical analysis of experiments conducted in a randomized block design with an additional treatment and balanced design with a factor considering the fixed model.
dbc.ad(
trat,
block,
response,
responsead,
grau = 1,
norm = "sw",
homog = "bt",
alpha.f = 0.05,
theme = theme_classic(),
ylab = "response",
xlab = "independent",
family = "sans",
posi = "top",
pointsize = 4.5,
linesize = 0.8,
width.bar = NA,
point = "mean_sd"
)
Numerical or complex vector with treatments
Numerical or complex vector with blocks
Numerical vector containing the response of the experiment.
Numerical vector with additional treatment responses
Degree of polynomial in case of quantitative factor (default is 1)
Error normality test (default is Shapiro-Wilk)
Homogeneity test of variances (default is Bartlett)
Level of significance of the F test (default is 0.05)
ggplot2 theme (default is theme_classic())
Variable response name (Accepts the expression() function)
Treatments name (Accepts the expression() function)
Font family
Legend position
Point size
line size (Trendline and Error Bar)
width of the error bars of a regression graph.
Defines whether to plot mean ("mean"), mean with standard deviation ("mean_sd" - default) or mean with standard error (default - "mean_se"). For quali=FALSE or quali=TRUE.
The table of analysis of variance, the test of normality of errors (Shapiro-Wilk ("sw"), Lilliefors ("li"), Anderson-Darling ("ad"), Cramer-von Mises ("cvm"), Pearson ("pearson") and Shapiro-Francia ("sf")), the test of homogeneity of variances (Bartlett ("bt") or Levene ("levene")), the test of independence of Durbin-Watson errors, adjustment of regression models up to grade 3 polynomial. The function also returns a standardized residual plot.
In some experiments, the researcher may study a quantitative factor, such as fertilizer doses, and present a control, such as a reference fertilizer, treated as a qualitative control. In these cases, there is a difference between considering only the residue in the unfolding of the polynomial, removing or not the qualitative treatment, or since a treatment is excluded from the analysis. In this approach, the residue used is also considering the qualitative treatment, a method similar to the factorial scheme with additional control.
doses = c(rep(c(1:5),e=3))
resp = c(3, 4, 3, 5, 5, 6, 7, 7, 8, 4, 4, 5, 2, 2, 3)
bloco = rep(c("B1","B2","B3","B4","B5"),3)
dbc.ad(doses, bloco, resp, responsead=rnorm(3,6,0.1),grau=2)
#>
#> -----------------------------------------------------------------
#> Normality of errors
#> -----------------------------------------------------------------
#> Method Statistic p.value
#> Shapiro-Wilk normality test(W) 0.9282362 0.1807871
#>
#> As the calculated p-value is greater than the 5% significance level, hypothesis H0 is not rejected. Therefore, errors can be considered normal
#>
#> -----------------------------------------------------------------
#> Homogeneity of Variances
#> -----------------------------------------------------------------
#> Method Statistic p.value
#> Bartlett test(Bartlett's K-squared) 2.016098 0.8469131
#>
#> As the calculated p-value is greater than the 5% significance level,hypothesis H0 is not rejected. Therefore, the variances can be considered homogeneous
#>
#> -----------------------------------------------------------------
#> Independence from errors
#> -----------------------------------------------------------------
#> Method Statistic p.value
#> Durbin-Watson test(DW) 2.78918 0.6039814
#>
#> As the calculated p-value is greater than the 5% significance level, hypothesis H0 is not rejected. Therefore, errors can be considered independent
#>
#> -----------------------------------------------------------------
#> Additional Information
#> -----------------------------------------------------------------
#>
#> CV (%) = 12.82
#> Mean = 4.5333
#> Median = 4
#> Possible outliers = No discrepant point
#>
#> -----------------------------------------------------------------
#> Analysis of Variance
#> -----------------------------------------------------------------
#> Analysis of Variance Table
#>
#> Response: response
#> Df Sum Sq Mean Sq F value Pr(>F)
#> Factor 4 44.400 11.1000 32.8473 5.176e-05 ***
#> Block 4 4.585 1.1462 3.3918 0.06657 .
#> Factor vs control 1 2.229 2.2287 6.5952 0.03323 *
#> Residuals 8 2.703 0.3379
#> ---
#> Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
#>
#> ----------------------------------------------------
#> Regression Models
#> ----------------------------------------------------
#> Estimate Std. Error t value Pr(>|t|)
#> (Intercept) -1.0666667 1.0615452 -1.004824 3.348137e-01
#> trat 5.2714286 0.8089681 6.516238 2.867473e-05
#> I(trat^2) -0.9285714 0.1322804 -7.019719 1.395317e-05
#>
#> ----------------------------------------------------
#> Deviations from regression
#> ----------------------------------------------------
#> Df SSq MSQ F p-value
#> Linear 1 2.700000 2.7000000 7.989882 2.226515e-02
#> Quadratic 1 36.214286 36.2142857 107.165878 6.551814e-06
#> Deviation 2 5.485714 2.7428571 8.116706 1.187686e-02
#> Residual 8 2.703419 0.3379274