Posts

Showing posts from August, 2020

Factorial Randomized Block Design along with LSD test in R

Image
The post explains how to get FRBD ANOVA, Interpretation of ANOVA, R-square, Normality assumption testing, Least significant difference (LSD) test using doebioresearch package in RStudio (Reading time 12 min.) Click here for data and Click here for R-script Factors: 3  Levels: 2 Replication:3  and dependent variables Yield & Plant Height Click on the link given in top to get the data arranged in excel. Get a closer look on data arrangement. R-script #You can upload the data by clicking on import data set-> From Excel -> Browse -> Select your file-> #Import #This line will load doebioresearch package library(doebioresearch) #This line will store the analysis obtained from function frbd3fact in output variable output<-frbd3fact(FRBD[5:6],FRBD$R,FRBD$V,FRBD$P,FRBD$W,1) output #This line will use sink function to store the output variable present in global environment in output.doc sink("output.doc") print(output) sink() Output and interpretation Click here