View source: R/convert_etdrs_to_logmar.R
convert_etdrs_to_logmar | R Documentation |
Convert ETDRS score to LogMAR units
convert_etdrs_to_logmar(value)
value |
object containing ETDRS score to convert to logMAR |
ETDRS value converted to logMAR as logMAR = -0.02 * ETDRS + 1.7
Source for conversion formula: Beck, R.W., et al. A computerized method of visual acuity testing. American Journal of Ophthalmology, 135(2), pp.194-205. doi:https://doi.org/10.1016/s0002-9394(02)01825-1.
The input value converted converted to logMAR units
Rachel Linacre
library(tibble)
library(dplyr)
library(admiral)
library(admiraldev)
adbcva <- tribble(
~STUDYID, ~USUBJID, ~AVAL,
"XXX001", "P01", 5,
"XXX001", "P02", 10,
"XXX001", "P03", 15,
"XXX001", "P04", 20,
"XXX001", "P05", 25
)
adbcva <- adbcva %>% mutate(AVAL = convert_etdrs_to_logmar(AVAL))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.