Factorial analysis (two and three way anova) In R using AgoR package

Описание к видео Factorial analysis (two and three way anova) In R using AgoR package

factorial analysis for CRD and RCBD
library(AgroR)
two factor in RCBD
data("covercrops")
attach(covercrops)
?covercrops
FAT2DBC(A, B, Bloco, Resp, mcomp="sk",
ylab=expression("Yield"~(Kg~"100 m"^2)),
legend = "Cover crops")
three factor in RCBD
data(enxofre)
with(enxofre, FAT3DBC(f1, f2, f3, bloco, resp))
two factor for CRD
data(cloro)
with(cloro, FAT2DIC(f1, f2, resp, ylab="Number of nodules",
addmean= FALSE,legend = "Stages"))
three factor in CRD
with(enxofre, FAT3DIC(f1, f2, f3, resp))

Комментарии

Информация по комментариям в разработке