out_type <- knitr::opts_knit$get("rmarkdown.pandoc.to")

r = getOption("repos")
r["CRAN"] = "https://cran.rstudio.com/"
#r["CRAN"] = "https://cloud.r-project.org/"
#r["CRAN"] = "https://ftp.iitm.ac.in/cran/"
options(repos = r)
# options(citation.bibtex.max=999)

# Workaround for missing pandoc in CRAN OSX build machines
out_type <- ifelse(out_type == "", "latex", out_type)

# Workaround for missing pandoc in Solaris build machines
out_type <- ifelse(identical (out_type, vector(mode = "logical", length = 0)),
                   "latex", out_type)
switch(out_type,
    html = {cat("<p>1. RRS, ICAR-Directorate of Groundnut Research, Anantapur.</p>

<p>2. ICAR-National Bureau of Plant Genetic Resources, New Delhi.</p>

<p>3. ICAR-Indian Institute of Rice Research, Hyderabad.</p>")},
    latex = cat("\\begin{center}
1. RRS, ICAR-Directorate of Groundnut Research, Anantapur.

2. ICAR-National Bureau of Plant Genetic Resources, New Delhi.

3. ICAR-Indian Institute of Rice Research, Hyderabad.

\\end{center}" )
)

\begin{center} \vspace{6pt} \hrule \end{center}

knitr::opts_chunk$set(
  comment = "",
  fig.cap = ""
)

\tableofcontents

\begin{wrapfigure}{r}{0.35\textwidth} \vspace{-20pt} \begin{center} \includegraphics[width=0.33\textwidth]{r system.file("extdata", "ammistability.png", package = "ammistability")} \end{center} \vspace{-20pt} \end{wrapfigure}

logo

Overview

The package ammistability [@ajay2019ammistability] is a collection of functions for the computation of various stability parameters from the results of Additive Main Effects and Multiplicative Interaction (AMMI) analysis computed by the AMMI function of agricolae package.

The goal of this vignette is to introduce the users to these functions and give a primer in computation of various stability parameters/indices from a fitted AMMI model. This document assumes a basic knowledge of R programming language.

\clearpage

Installation

The package can be installed from CRAN as follows:

# Install from CRAN
install.packages('ammistability', dependencies=TRUE)

The development version can be installed from github as follows:

# Install development version from Github
devtools::install_github("ajaygpb/ammistability")

Then the package can be loaded using the function

library(ammistability)

Version History

# Fetch release version
rver <- ifelse(test = gsub("(.\\.)(\\d+)(\\..)", "", getNamespaceVersion("ammistability")) == "",
               yes = getNamespaceVersion("ammistability"),
               no = ifelse("ammistability" %in% available.packages()[, 1],
                           as.vector(available.packages()["ammistability",]["Version"]),
                           getNamespaceVersion("ammistability")))

The current version of the package is r rver. The previous versions are as follows.

Table 1. Version history of ammistability R package.

if (requireNamespace("RCurl", quietly = TRUE) & requireNamespace("httr", quietly = TRUE) & requireNamespace("XML", quietly = TRUE)) {
pkg <- "ammistability"
link <- paste0("https://cran.r-project.org/src/contrib/Archive/", pkg, "/")

if (RCurl::url.exists(link)) {
  # cafile <- system.file("CurlSSL", "cacert.pem", package = "RCurl")
# page <- httr::GET(link, httr::config(cainfo = cafile))
page <- httr::GET(link)
page <- httr::content(page, as = 'text')
# page <- RCurl::getURL(link)

VerHistory <- XML::readHTMLTable(page)[[1]][,2:3]
colnames(VerHistory) <- c("Version", "Date")
VerHistory <- VerHistory[VerHistory$Version != "Parent Directory",]
VerHistory <- VerHistory[!is.na(VerHistory$Version), ]
VerHistory$Date <- as.Date(VerHistory$Date)
VerHistory$Version <- gsub("ammistability_", "", VerHistory$Version)
VerHistory$Version <- gsub(".tar.gz", "", VerHistory$Version)

VerHistory <- VerHistory[order(VerHistory$Date), c("Version", "Date")]
rownames(VerHistory) <- NULL

knitr::kable(VerHistory)

} else {
  print("Access to CRAN page for 'ammistability' is required to generate this table.'")
}

} else {
print("Packages 'RCurl', 'httr' and 'XML' are required to generate this table.")
}

To know detailed history of changes use news(package='ammistability').

AMMI model

The difference in response of genotypes to different environmental conditions is known as Genotype-Environment Interaction (GEI). Understanding the nature and structure of this interaction is critical for plant breeders to select for genotypes with wide or specific adaptability. One of the most popular techniques to achieve this is by fitting the Additive Main Effects and Multiplicative Interaction (AMMI) model to the results of multi environment trials [@gauch_model_1988; @gauch_statistical_1992].

The AMMI equation is described as follows.

$$Y_{ij} = \mu + \alpha_{i} + \beta_{j} + \sum_{n=1}^{N}\lambda_{n}\gamma_{in}\delta_{jn} + \rho_{ij}$$

Where, $Y_{ij}$ is the yield of the $i$th genotype in the $j$th environment, $\mu$ is the grand mean, $\alpha_{i}$ is the genotype deviation from the grand mean, $\beta_{j}$ is the environment deviation, $N$ is the total number of interaction principal components (IPCs), $\lambda_{n}$ is the is the singular value for $n$th IPC and correspondingly $\lambda_{n}^{2}$ is its eigen value, $\gamma_{in}$ is the eigenvector value for $i$th genotype, $\delta_{jn}$ is the eigenvector value for the $j$th environment and $\rho_{ij}$ is the residual.

AMMI stability parameters

Although the AMMI model can aid in determining genotypes with wide or specific adaptability, it fails to rank genotypes according to their stability. Several measures have been developed over the years to indicate the stability of genotypes from the results of AMMI analysis (Table 1.).

The details about AMMI stability parameters/indices implemented in ammistability are described in Table 1.

\newpage \blandscape

\rowcolors{2}{gray!25}{white} \renewcommand{\arraystretch}{1.3}

Table 1 : AMMI stability parameters/indices implemented in ammistability. \footnotesize

load("stability.rda")

stabparams$`function` <- paste("`", stabparams$`function`, "`", sep = "")

# stabparams$Details <- gsub("\\r\\n\\r\\n", "$$\\\\, $$", stabparams$Details)
# stabparams$Details <- gsub("$$\\, $$$$", "$$", stabparams$Details, fixed = TRUE)
#stabparams$Details <- paste(stabparams$Details, "$$\\\\, $$", sep = "")

stabparams$Details <- gsub("\\r\\n", "\\\\\n", stabparams$Details)

#stabparams$Details <- gsub("\\r\\n\\r\\n", "##", stabparams$Details)
#stabparams$Details <- gsub("##", "\\\n", stabparams$Details)

stabparams$Reference <- gsub("\\[|\\]", "", stabparams$Reference)
stabparams <- stabparams[-c(1),]
rownames(stabparams) <- NULL
pander::pander(stabparams, style = 'multiline',
               split.cell = c(15, 15, 50, 10),
               justify = c('left'), split.table = Inf, keep.line.breaks = TRUE,
               use.hyphening = FALSE, missing = "")

Where, $N$ is the total number of interaction principal components (IPCs); $N'$ is the number of significant IPCAs (number of IPC that were retained in the AMMI model via F tests); $\lambda_{n}$ is the is the singular value for $n$th IPC and correspondingly $\lambda_{n}^{2}$ is its eigen value; $\gamma_{in}$ is the eigenvector value for $i$th genotype; $\delta_{jn}$ is the eigenvector value for the $j$th environment; $SSIPC_{1}$, $SSIPC_{2}$, $\cdots$, $SSIPC_{n}$ are the sum of squares of the 1st, 2th, ..., and $n$th IPC; $PC_{1}$, $PC_{2}$, $\cdots$, $PC_{n}$ are the scores of 1st, 2th, ..., and $n$th IPC; $\theta_{n}$ is the percentage sum of squares explained by $n$th principal component interaction effect; and $E$ is the number of environments.

\elandscape

\newpage

Examples

# Function saved in functions.R file
getCode <- function(myFunction, myPackage) {
  out <- example(myFunction, myPackage, ask = FALSE, character.only = TRUE,
          prompt.prefix = "", give.lines = TRUE)
  maxn <- grep(pattern = "### ** Examples", x = out, fixed = TRUE)
  out <- out[-(1:maxn)]

  return(out)
}
library(ammistability)
require(ammistability)
library(ammistability)

AMMI model from agricolae::AMMI


AMGE.AMMI()


ASI.AMMI()


ASTAB.AMMI()


AVAMGE.AMMI()


DA.AMMI()


DZ.AMMI()


EV.AMMI()


FA.AMMI()


MASV.AMMI()


SIPC.AMMI()


ZA.AMMI()


Simultaneous selection indices for yield and stability

The most stable genotype need not necessarily be the highest yielding genotype. Hence, simultaneous selection indices (SSIs) have been proposed for the selection of stable as well as high yielding genotypes.

A family of simultaneous selection indices ($I_{i}$) were proposed by @rao_use_2005 similar to those proposed by @bajpai_new_2000 by incorporating the AMMI Based Stability Parameter ($ASTAB$) and Yield as components. These indices consist of yield component, measured as the ratio of the average performance of the $i$th genotype to the overall mean performance of the genotypes under test and a stability component, measured as the ratio of stability information ($\frac{1}{ASTAB}$) of the $i$th genotype to the mean stability information of the genotypes under test.

$$I_{i} = \frac{\overline{Y}{i}}{\overline{Y}{..}} + \alpha \frac{\frac{1}{ASTAB_{i}}}{\frac{1}{T}\sum_{i=1}^{T}\frac{1}{ASTAB_{i}}}$$

Where $ASTAB_{i}$ is the stability measure of the $i$th genotype under AMMI procedure; $Y_{i}$ is mean performance of $i$th genotype; $Y_{..}$ is the overall mean; $T$ is the number of genotypes under test and $\alpha$ is the ratio of the weights given to the stability components ($w_{2}$) and yield ($w_{1}$) with a restriction that $w_{1} + w_{2} = 1$. The weights can be specified as required (Table 2).

Table 2 : $\alpha$ and corresponding weights ($w_{1}$ and $w_{2}$)

w1 = c(0.5, 0.6, 0.7, 0.8)
w2 = c(0.5, 0.4, 0.3, 0.2)
a = round(w2/w1, 2)

alph <- data.frame(alpha = a, w1, w2)

knitr::kable(alph, row.names = FALSE, col.names = c("$\\alpha$", "$w_{1}$", "$w_{2}$"))

In ammistability, the above expression has been implemented for all the stability parameters ($SP$) including ASTAB.

$$I_{i} = \frac{\overline{Y}{i}}{\overline{Y}{..}} + \alpha \frac{\frac{1}{SP_{i}}}{\frac{1}{T}\sum_{i=1}^{T}\frac{1}{SP_{i}}}$$

Genotype stability index ($GSI$) [@farshadfar_incorporation_2008] or Yield stability index ($YSI$) [@farshadfar_ammi_2011; @jambhulkar_stability_2017] is a simultaneous selection index for yield and yield stability which is computed by summation of the ranks of the stability index/parameter and the ranks of the mean yields. $YSI$ is computed for all the stability parameters/indices implemented in this package.

$$GSI = YSI = R_{SP} + R_{Y}$$

Where, $R_{SP}$ is the stability parameter/index rank of the genotype and $R_{Y}$ is the mean yield rank of the genotype.

The function SSI implements both these indices in ammistability. Further, for each of the stability parameter functions, the simultaneous selection index is also computed by either of these functions as specified by the argument ssi.method.

Examples

# Function saved in functions.R file
getCode <- function(myFunction, myPackage) {
  out <- example(myFunction, myPackage, ask = FALSE, character.only = TRUE,
          prompt.prefix = "", give.lines = TRUE)
  maxn <- grep(pattern = "### ** Examples", x = out, fixed = TRUE)
  out <- out[-(1:maxn)]

  return(out)
}
library(ammistability)
require(ammistability)

SSI()


Wrapper function

A function ammistability has also been implemented which is a wrapper around all the available functions in the package to compute simultaneously multiple AMMI stability parameters along with the corresponding SSIs. Correlation among the computed values as well as visualization of the differences in genotype ranks for the computed parameters is also generated.

Examples

# Function saved in functions.R file
getCode <- function(myFunction, myPackage) {
  out <- example(myFunction, myPackage, ask = FALSE, character.only = TRUE,
          prompt.prefix = "", give.lines = TRUE)
  maxn <- grep(pattern = "### ** Examples", x = out, fixed = TRUE)
  out <- out[-(1:maxn)]

  return(out)
}
library(ammistability)
require(ammistability)

ammistability()


Citing ammistability

# detach("package:ammistability", unload=TRUE)
suppressPackageStartupMessages(library(ammistability))
cit <- citation("ammistability")
# yr <- format(Sys.Date(), "%Y")
# cit[1]$year <- yr
# oc <- class(cit)
# 
# cit <- unclass(cit)
# attr(cit[[1]],"textVersion") <- gsub("\\(\\)",
#                                      paste("\\(", yr, "\\)", sep = ""),
#                                      attr(cit[[1]],"textVersion"))
# class(cit) <- oc
cit

Session Info

sessionInfo()

References



ajaygpb/AMMIStbp documentation built on Aug. 21, 2023, 7:59 p.m.