Learn R Programming

PhysioIndexR (version 0.1.0)

Chl: Chlorophyll concentration from non-destructive indices (Chl)

Description

This function computes total chlorophyll content derived from SPAD (Soil-Plant Analysis Development) value (TCHLSPAD), and total chlorophyll content derived from CCI (Chlorophyll Content Index) value (TCHLCCI). For more details see Krishnapriya et al. (2020) doi:10.37580/JSR.2019.2.9.150-163.

Usage

Chl(Gen, SPAD_PI, CCI_PI)

Value

A list of output columns:

  • Gen: Character vector of genotype IDs.

  • TCHLSPAD: total chlorophyll content derived from SPAD (Soil-Plant Analysis Development) value (TCHLSPAD).

  • TCHLCCI: total chlorophyll content derived from CCI (Chlorophyll Content Index) value (TCHLCCI).

Arguments

Gen

Character vector of Genotype IDs.

SPAD_PI

Numeric vector of SPAD (Soil-Plant Analysis Development) values for phase I (PI).

CCI_PI

Numeric vector of CCI (Chlorophyll Content Index) values for phase I (PI).

References

Krishnapriya, V., Arunkumar, R., Gomathi, R. and Vasantha, S. (2020). doi:10.37580/JSR.2019.2.9.150-163.

Examples

Run this code
# Creating a sample dataset
Gen = c("V1","V2","V3")
SPAD_PI = c(43.1,44.6,38.6)
CCI_PI  = c(27.3,30.4,21.3)
Chl(Gen, SPAD_PI, CCI_PI)

Run the code above in your browser using DataLab