vigor_corr {SeedCalc} | R Documentation |
Seed Corrected Vigor Index
Description
It calculates the Seed Corrected Vigor Index (Medeiros & Pereira, 2018).
Usage
vigor_corr(lengths, Ger = 100, wg = 0.7, wu = 0.3, Unif = 1)
Arguments
lengths |
A |
Ger |
A |
wg |
A numeric value between zero and one. Default is 0.7. Is the weight given to the seedling lenght in the |
wu |
A numeric value between zero and one. Default is 0.3. Is the weight given to the |
Unif |
A numeric value, 1 or 2. If 1, the |
References
MEDEIROS, A. D. DE; PEREIRA, M. D. SAPL: a free software for determining the physiological potential in soybean seeds. Pesquisa Agropecuaria Tropical, v. 48, n. 3, p. 222-228, 2018.
Examples
Seedling <- data.frame(
LOTE = c(1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2),
REP = c(1, 1, 1, 1, 2, 2, 2, 1, 1, 1, 1, 2, 2, 2, 2),
SH = c(0.00, 2.77, 1.18, 1.07, 0.80, 2.65, 3.51, 0.64, 2.77, 1.18, 1.07, 0.80, 2.65, 3.51, 1.98),
ROOT = c(4.86, 6.71, 7.88, 3.68, 9.68, 8.88, 9.85, 4.86, 6.71, 7.88, 3.68, 9.68, 8.88, 9.85, 8.75)
)
print(Seedling)
Ger <- data.frame(LOTE = c(1,2), GER = (c(90,80)))
print(Ger)
VigInd <- vigor_corr(Seedling, Ger, wg = 0.7, wu = 0.3, Unif = 1)
VigInd