⚠️There's a newer version (1.0.12) of this package. Take me there.

statgenSTA

statgenSTA is an R package providing functions for phenotypic analysis of agricultural field trials using mixed models with and without spatial components.

Analysis can be done using one of the R packages SpATS, lme4 or asreml. For the latter a license is required which can be obtained upon purchase from VSNi.

statgenSTA has extensive options for summarizing and visualizing both the raw data and the fitted models. The example below shows a selection of what is possible. For a full overview of all options it is best to read the vignette

Installation

  • Install from CRAN:
install.packages("statgenSTA")
  • Install latest development version from GitHub (requires remotes package):
remotes::install_github("Biometris/statgenSTA", ref = "develop", dependencies = TRUE)

Examples

Example using the phenotypic data for a wheat trial in Chile. The same data is used in the vignette and described there in detail.

First get the data in the form required by the package, converting it to an object of class T(rial)D(ata).

library(statgenSTA)
data("wheatChl")
wheatTD <- createTD(data = wheatChl, genotype = "trt", repId = "rep",
            subBlock = "bl", rowCoord = "row", colCoord = "col")

Some plots to get a first idea of the contents of the data.

## Plot the layout for SR_FI_11 with genotypes G278 and G279 highlighted.
plot(wheatTD, plotType = "layout", trials = "SR_FI_11", highlight = c("G278", "G279"))
## Create a boxplot for grain yield.
plot(wheatTD, plotType = "box", traits = "GY")
## Create a scatter plot matrix for grain yield.
## Add correlations between trials in top left of scatter plots.
plot(wheatTD, plotType = "scatter", traits = "GY", addCorr = "tl")

Fit mixed models for one of the trials, SR_FI_11, and visualize the output.

## Fit a single trial model using a model based on a resovable row column design.
modWheatSp <- fitTD(TD = wheatTD, trials = "SR_FI_11", traits = "GY", design = "res.rowcol")
#> Using SpATS for fitting models.
## Base plots for the model with genotype fitted as random effect.
plot(modWheatSp, plotType = "base", what = "random")
## Spatial plot for the model with genotype fitted as fixed effect.
## Display the spatial trend as a percentage.
plot(modWheatSp, plotType = "spatial", spaTrend = "percentage")

Copy Link

Version

Down Chevron

Install

install.packages('statgenSTA')

Monthly Downloads

524

Version

1.0.6

License

GPL

Issues

Pull Requests

Stars

Forks

Last Published

September 23rd, 2020

Functions in statgenSTA (1.0.6)