# bayisa.wheat.R
# Time-stamp: <23 Apr 2024 14:48:28 c:/drop/rpack/agridat/data-unused/bayisa.wheat.r>
# Reason not used: Confusing source citation.
# Source: Bayisa, D. (2010).
# Application of Spatial Mixed Model in Agricultural Field Experiment.
# Master thesis. Department of Statistics, Addis Ababa University.
# Electronic version from Johannes Forkman document
# "Exercise: Agricultural field experiment with spatial correlation"
# The data below is 4 rep, 20 genotype
# This thesis gives data for 1 uniformity experiment.
# A couple other experiments were also analyzed.
library(asreml)
library(kw)
library(Hmisc)
library(lattice)
library(rio)
setwd("c:/drop/rpack/agridat/data-unused/")
dat0 <- import("bayisa.wheat.xlsx")
dat <- dat0
head(dat)
libs(desplot)
desplot(dat, yield~east+north, out1=rep, tick=TRUE)
str(dat)
describe(dat)
Solution in R (Agricultural field experiment with spatial correlation)
With fixed effects of varieties and random effects of blocks, the randomized complete block model can be fitted through
library(nlme)
library(multcomp)
dat <- transform(dat, gen=factor(gen), rep=factor(rep))
m1 <- lme(yield ~ gen,
random = ~ 1 | rep, data = dat)
summary(m1)
summary(glht(m1, linfct = mcp(gen = "Tukey"))) # slow
According to the RCB analysis, variety 6 is top performing.
According to the Akaike information criterion (AIC), a model with exponential covariance gives a better fit:
m2 <- lme(yield ~ gen,
random = ~ 1 | rep, data = dat,
corr = corExp(form = ~ east + north))
summary(m2)
anova(m2)
summary(glht(m2, linfct = mcp(gen = "Tukey")))
With this spatial model, the best variety is variety 1.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.