Today we had a data set come in that the researcher requested AUDPC (Area Under the Disease Progress Curve) (Shaner and Finney 1977) be calculated from two points. This is a common request as it’s quite time and labour intensive to collect these data, especially in breeding trials and can be done with a simple formula from Jeger and Viljanen-Rollinson (2001). However, I wasn’t aware of any R package that implemented this calculation, so I wrote a function to do it.
|
|
Using the example as seen in the documentation for AUDPC from dos S. Alves and Del Ponte (2021) we can calculate AUDPC using the trapezoidal method.
|
|
## [1] 14.69147
Using the same data, we can calculate AUDPC from two points.
|
|
## [1] 30
|
|
## [1] 0.01
|
|
## [1] 0.9879302
|
|
## [1] 14.68996
We can see that the values are very similar, but not identical, i.e., our two point method results in 14.6899594, while the traditional method provides, 14.6914735, which is what Jeger and Viljanen-Rollinson (2001) proposes we should expect, values that are close enough to be useful but not identical.
References
dos S. Alves, Kaique, and Emerson M. Del Ponte. 2021. epifitter: Analysis and Simulation of Plant Disease Progress Curves. https://CRAN.R-project.org/package=epifitter.
Jeger, M. J., and S. L. H. Viljanen-Rollinson. 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. https://doi.org/10.1007/s001220051615.
Shaner, Gregory, and Robert E. Finney. 1977. “The Effect of Nitrogen Fertilization on the Expression of Slow-Mildewing Resistance in Knox Wheat.” Phytopathology 67 (8): 1051–56.