is_ptnerg | R Documentation |
Selection index for protein and grain yield (Pelegrin et al., 2017).
is_ptnerg(GEN, PTN, RG, verbose = TRUE)
GEN |
The column with the name of the genotype |
PTN |
The column with the crude protein values |
RG |
The column with the grain yield values (in kg per ha) |
verbose |
Logical argument. Runs the code silently if FALSE. |
Returns an industrial wheat quality index based solely on protein and grain yield.
Willyan Junior Adorian Bandeira
Ivan Ricardo Carvalho
Murilo Vieira Loro
Leonardo Cesar Pradebon
Jose Antonio Gonzalez da Silva
de Pelegrin, A. J., Carvalho, I. R., Nunes, A. C. P., Demari, G. H., Szareski, V. J., Barbosa, M. H., ... & da Maia, L. C. (2017). Adaptability, stability and multivariate selection by mixed models. American Journal of Plant Sciences, 8(13), 3324.
library(EstimateBreed)
Gen <- c("G1", "G2", "G3", "G4", "G5")
PTN <- c(12.5, 14.2, 13.0, 11.8, 15.1)
RG <- c(3500, 4000, 3700, 3300, 4100)
data <- data.frame(Gen,PTN,RG)
iqptn <- with(data,is_ptnerg(Gen,PTN,RG))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.