This PR flips (and in my opinion simplifies) the condition in insert_false_metformin() and insert_false_drug_names().
It also adds "indo" to the conditon in insert_false_metformin() since this column is used to filter within the function.
About the condition:
Before, the condition was True only if all colnames in data was "atc" and "name" (we wanted it to be True if both "atc" and "name" are in the column names)
To fix this, I flipped the condition so it's True when both "atc" and "name" are in colnames. The flip was mostly to avoid the "!" and make the condition more intuitive.
Description
insert_false_metformin()
andinsert_false_drug_names()
.insert_false_metformin()
since this column is used to filter within the function.About the condition:
Issues
Closes #120