anlys {NBBDesigns}R Documentation

Analysis of data

Description

This function provides the Analysis of Variance (Type III) of the data generated from experiments conducted using a neighbour balanced/partially neighbour balanced block design.

Usage

anlys(data)

Arguments

data

The data file should be in csv format. The columns should be named as block,treatment, left_neighbour, right_neighbour and yield as given in the example data set.

Value

It provides the ANOVA table.

Examples

## Not run: 
library(NBBDesigns)
data<-file.choose()
data<-read.csv(data,header=TRUE,colClasses = c("factor","factor","factor","factor","numeric"))
fix(data)
anlys(data)

## End(Not run)

[Package NBBDesigns version 1.1.0 Index]