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? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
So far a PM_RESULTS Table is created. This needs to be pivoteted across to get the earliest to latest date range:
PM_RESULTS
The text was updated successfully, but these errors were encountered:
pm_results <- fantasia::qOMOP( "select * from patelm9.pm_results" ) pm_results %>% group_by(search_term, search_type) %>% summarize(is_missing = all(is.na(snippet))) %>% filter(is_missing == TRUE) %>% ungroup() %>% group_by(search_term) %>% summarize(no_results = all((is_missing == TRUE))) %>% filter(no_results == TRUE)
Sorry, something went wrong.
No branches or pull requests
So far a
PM_RESULTS
Table is created. This needs to be pivoteted across to get the earliest to latest date range:The text was updated successfully, but these errors were encountered: