You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using cdm_flatten() on a CDM performs table checks for the domains, for example:
assert_tables(cdm, "drugs")
and gives an error if the table is empty:
Error in `assert_tables()`:
! - drug_exposure cdm table is empty
However, when the function is applied to a small subset, it can easily happen that for this particular subset, some table is empty and this is completely OK and should not produce an error.
Using
cdm_flatten()
on a CDM performs table checks for the domains, for example:assert_tables(cdm, "drugs")
and gives an error if the table is empty:
However, when the function is applied to a small subset, it can easily happen that for this particular subset, some table is empty and this is completely OK and should not produce an error.
Reproducible example:
EXPECTED RESULT: No error
ACTUAL RESULT:
The text was updated successfully, but these errors were encountered: