R Under development (unstable) (2024-03-11 r86098 ucrt) -- "Unsuffered Consequences" Copyright (C) 2024 The R Foundation for Statistical Computing Platform: x86_64-w64-mingw32/x64 R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > library(phoenix) > > ################################################################################ > # verify that the return is an integer vector > > eg <- phoenix_renal(creatinine, age, data = sepsis) > stopifnot("return is an integer vector" = is.integer(eg)) > > ################################################################################ > # verify that a single 0 is returned when nothing is passed, or just a data set > # is passed > stopifnot(identical(phoenix_renal(), 0L)) > stopifnot(identical(phoenix_renal(data = sepsis), 0L)) > > ################################################################################ > # verify error if lengths differ > x <- tryCatch(phoenix_renal(creatinine = numeric(0)), error = function(e) e) > stopifnot(inherits(x, "simpleError")) > stopifnot(identical( + x$message, + "All inputs need to either have the same length or have length 1. Length of creatinine is 0; Length of age is 1." + )) > > x <- tryCatch(phoenix_renal(creatinine = c(NA, NA), age = c(NA, NA, NA)), error = function(e) e) > stopifnot(inherits(x, "simpleError")) > stopifnot(identical( + x$message, + "All inputs need to either have the same length or have length 1. Length of creatinine is 2; Length of age is 3." + )) > > ################################################################################ > # End of File # > ################################################################################ > > proc.time() user system elapsed 0.14 0.03 0.15