I am getting the error message 'Error: C stack usage 15926448 is too close to the limit' after running the following syntax:
acute_kidney_injury<-mydata_final_distinct %>%
select(Case_ID,Effect_1:Effect_367,Primary_Suspect_Drugs) %>%
filter_at(vars(Effect_1:Effect_367), any_vars(. == 'acute kidney injury')) %>%
count () %>%
print()
Can anybody point out to me what is wrong with my syntax. Thank you for helping.