From 1cd363d7757a6ee0e4f31a4a289cb31cafe350c4 Mon Sep 17 00:00:00 2001 From: "Alcaraz, Josue {TBB~SOUTH SAN FRANCISCO}" Date: Wed, 26 Jun 2024 17:36:49 +0200 Subject: [PATCH] changed patients to patient(s) in line 70 --- R/check_cm_missing_month.R | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/R/check_cm_missing_month.R b/R/check_cm_missing_month.R index 733f096c..4aab8b0f 100755 --- a/R/check_cm_missing_month.R +++ b/R/check_cm_missing_month.R @@ -67,9 +67,14 @@ if(CM %lacks_any% c("USUBJID", "CMTRT", "CMSTDTC","CMENDTC")){ }else if(nrow(mydf)>0){ fail(paste("There are ",length(unique(mydf$USUBJID)), - " patients with a conmed date that has year and day present but missing month. ",sep=""), + " patient(s) with a conmed date that has year and day present but missing month. ",sep=""), mydf) } } } + + + + +