Learn R Programming

agricolae (version 1.0-9)

DAU.test: Finding the Variance Analysis of the Augmented block Design

Description

Analysis of variance Augmented block and comparison mean adjusted.

Usage

DAU.test(block, trt, y, method = c("lsd","tukey"))

Arguments

block
blocks
trt
Treatment
y
Response
method
Comparison treatments

Value

  • blockVector
  • trtVector
  • ynumeric vector
  • methodCharacter

Details

Method of comparison treatment. lsd: Least significant difference. tukey: Honestly significant differente.

References

Federer, W. T. (1956). Augmented (or hoonuiaku) designs. Hawaiian Planters, Record LV(2):191-208.

See Also

BIB.test,LSD.test, HSD.test, PBIB.test

Examples

Run this code
library(agricolae)
block<-c(rep("I",7),rep("II",6),rep("III",7))
trt<-c("A","B","C","D","g","k","l","A","B","C","D","e","i","A","B","C","D","f","h","j")
yield<-c(83,77,78,78,70,75,74,79,81,81,91,79,78,92,79,87,81,89,96,82)
model<- DAU.test(block,trt,yield,method="lsd")

Run the code above in your browser using DataLab