-
-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
111 lookup valid check #119
Conversation
Code Coverage Summary
Results for commit: 74622f7 Minimum allowed coverage is ♻️ This comment has been updated with latest results |
@@ -66,6 +66,7 @@ radeg <- function(ADSL, # nolint | |||
checkmate::assert_integer(n_assessments, len = 1, any.missing = FALSE) | |||
checkmate::assert_integer(n_days, len = 1, any.missing = FALSE) | |||
checkmate::assert_integer(max_n_eg, len = 1, any.missing = FALSE) | |||
checkmate::assert_data_frame(lookup, null.ok = TRUE) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems the function has the lookup
parameter, but didn't use it. Should we remove it? @shajoezhu
@@ -64,6 +64,7 @@ radex <- function(ADSL, # nolint | |||
checkmate::assert_integer(n_assessments, len = 1, any.missing = FALSE) | |||
checkmate::assert_integer(n_days, len = 1, any.missing = FALSE) | |||
checkmate::assert_integer(max_n_exs, len = 1, any.missing = FALSE) | |||
checkmate::assert_data_frame(lookup, null.ok = TRUE) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same as above, the parameter lookup
wasn't in use in this function
@@ -68,6 +68,7 @@ radlb <- function(ADSL, # nolint | |||
checkmate::assert_integer(n_assessments, len = 1, any.missing = FALSE) | |||
checkmate::assert_integer(n_days, len = 1, any.missing = FALSE) | |||
checkmate::assert_integer(max_n_lbs, len = 1, any.missing = FALSE) | |||
checkmate::assert_data_frame(lookup, null.ok = TRUE) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same comment above
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks a lot @yli110-stat697 ! lgtm! Let's investigate how to add look up for radex, radeg, and radlb in #121
close #111