View source: R/AUDPC_2_points.R
AUDPC2_points | R Documentation |
Estimates area under the disease progress curve AUDPC from two qualifications only, see Jeger and Viljanen-Rollinson (2001) for more.
AUDPC_2_points(time, y0, yT)
time |
Number of days from first disease assessment to last disease assessment. |
y0 |
A numeric value representing the disease intensity at the first intensity measurement. Must be greater than zero and less than one. |
yT |
A numeric value representing the disease intensity at the last
intensity measurement. Must be greater than |
Adam H. Sparks, adamhsparks@gmail.com
Jeger, M. J., & Viljanen-Rollinson, S. L. H. (2001). The use of the area under the disease-progress curve (AUDPC) to assess quantitative disease resistance in crop cultivars. *Theoretical and Applied Genetics*, 102, 32-40. DOI: 10.1007/s001220051615.
epi <- sim_logistic(N = 30, y0 = 0.01, dt = 5, r = 0.3, alpha = 0.5, n = 1)
# compare with use values from `epi`, first and last only
# time
epi$time[7]
# y0
epi$y[1]
# yT
epi$y[7]
AUDPC_2_points(time = epi$time[7], y0 = epi$y[1], yT = epi$y[7])
# compare with traitional AUDPC trapezoidal method
AUDPC(time = epi$time, y = epi$y, y_proportion = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.