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
Use the optional parameters start_date and ehr_id to get_hipaa_disclosure_log_from_ehr_fhir_logs(). For each parameter, if it is specified, filter the data returned by the SQL query underlying this code block:
The tricky part is making it performant. When you see a code block that starts with dplyr::tbl and ends with dplyr::collect(), the query will be converted into SQL and handed to the SQL server. In my experience, these queries are inefficient if you use more than one filter statement. So I advise you to use only one filter statement and that gets hard.
You'll probably need to separate the tbl-->collect stanza from the code that follows it saving an intermediate result. Then you can use conditional logic statements in R to decide which of a few varying tbl-->collect stanzas to send.
The text was updated successfully, but these errors were encountered:
Use the optional parameters
start_date
andehr_id
toget_hipaa_disclosure_log_from_ehr_fhir_logs()
. For each parameter, if it is specified, filter the data returned by the SQL query underlying this code block:The tricky part is making it performant. When you see a code block that starts with
dplyr::tbl
and ends withdplyr::collect()
, the query will be converted into SQL and handed to the SQL server. In my experience, these queries are inefficient if you use more than one filter statement. So I advise you to use only one filter statement and that gets hard.You'll probably need to separate the
tbl-->collect
stanza from the code that follows it saving an intermediate result. Then you can use conditional logic statements in R to decide which of a few varyingtbl-->collect
stanzas to send.The text was updated successfully, but these errors were encountered: