Learn R Programming

PhysioIndexR (version 0.1.0)

SSPI: Stress Susceptibility Percentage Index (SSPI)

Description

This function computes Stress Susceptibility Percentage Index (SSPI) using any traits (like yield) under stress and non-stress conditions. The lower values of SSPI indicates greater tolerance. For more details see Moosavi et al. (2008).

Usage

SSPI(Gen, YN, YS, YMN = NULL)

Value

A list with YMN and Result (data frame with Gen, SSPI).

$$SSPI = \frac{(YN - YS)}{2 \times YMN} \times 100$$

Arguments

Gen

Character vector of genotype identifiers.

YN

Numeric vector: yield (any trait) under non-stress (normal) environment.

YS

Numeric vector: yield (any trait) under stress environment.

YMN

Optional numeric scalar: mean of YN. If NULL, computed.

References

Mousavi, S.S., YAZDI, S.B., Naghavi, M.R., Zali, A.A., Dashti, H. and Pourshahbazi, A. (2008). Introduction of new indices to identify relative drought tolerance and resistance in wheat genotypes. Desert 12, 165–178.

Examples

Run this code
out=SSPI(Gen=c("G1","G2","G3"), YN=c(10,8,5), YS=c(7,5,3))
print(out)

Run the code above in your browser using DataLab