We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I can see that filter argument of create_dcut function is marked as optional:
filter
create_dcut
filter <- assert_filter_cond(enexpr(filter), optional = TRUE)
but it doesn't seem to be handled as optional further in the code that leads to an error:
> dcut <- create_dcut( + dataset_ds = source_data$dm, + ds_date_var = RFICDTC, + #filter = TRUE, + cut_date = cut_date, + cut_description = "Clinical Cutoff Date" + ) Error in filter(., DCUTDTM >= DCUT_TEMP_DATE) : argument "filter" is missing, with no default
No response
dcut <- create_dcut( dataset_ds = source_data$dm, ds_date_var = RFICDTC, #filter = TRUE, cut_date = cut_date, cut_description = "Clinical Cutoff Date" )
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What happened?
I can see that
filter
argument ofcreate_dcut
function is marked as optional:but it doesn't seem to be handled as optional further in the code that leads to an error:
Session Information
No response
Reproducible Example
The text was updated successfully, but these errors were encountered: