all_indices {plantphysioR} | R Documentation |
All indices combined
Description
Function to all the indices related to biomass/ yield under different growth conditions
Usage
all_indices(Yp, Ys, Mp, Ms)
Arguments
Yp |
Yield under control condition |
Ys |
Yield under stress condition |
Mp |
Mean yield of all the genotypes under control condition |
Ms |
Mean yiels of all the genotyps under Stress condition |
Value
Indices Combined
Examples
Mp <- mean(yield_data$Yp)
Ms <- mean(yield_data$Ys)
Yp <- yield_data$Yp
Ys <- yield_data$Ys
all_indices(Yp, Ys, Mp, Ms)
[Package plantphysioR version 1.0.0 Index]