rend_ind: Peeling Index and Industrial Yield

View source: R/indqi.R

rend_indR Documentation

Peeling Index and Industrial Yield

Description

Calculating the Hulling Index and Industrial Yield of White Oats

Usage

rend_ind(GEN, NG2M, MG, MC, RG, stat = "all", verbose = FALSE, ...)

Arguments

GEN

The column with the name of the genotypes.

NG2M

The column with values for the number of grains larger than 2mm.

MG

The column with grain mass values.

MC

The column with karyopsis mass values.

RG

The column with the grain yield values (kg per ha).

stat

Logical argument. Use 'all' to keep all the observations or 'mean' to extract the overall average.

verbose

Logical argument. Runs the code silently if FALSE.

...

General parameters of ggplot2 for utilization

Value

Returns the peeling index and industrial yield considering the standards desired by the industry.

Author(s)

Willyan Junior Adorian Bandeira

Ivan Ricardo Carvalho

Murilo Vieira Loro

Leonardo Cesar Pradebon

Jose Antonio Gonzalez da Silva

Examples

library(EstimateBreed)

data("aveia")
# Calculate the industrial yield without extracting the average
with(aveia, rend_ind(GEN,NG2M,MG,MC,RG))

# Calculate the industrial yield by extracting the average per genotype
with(aveia, rend_ind(GEN,NG2M,MG,MC,RG,stat="mean"))

EstimateBreed documentation built on April 4, 2025, 5:37 a.m.