Description Usage Arguments Details Value Author(s) Examples
View source: R/oppe_consultant_report_functions.R
Get the seasonal diagnostics of the last 6 months consulant usage
1 | coded_consults_seasonal_diagnositcs_plt(.data, .date_col, .value_col)
|
.data |
The data you want to analyze |
.date_col |
The column that has the date you want to use, typically dsch_date |
.value_col |
The column that holds the value, can use record_flag from the query |
Must have data supplied either by import or by coded_consults_query()
function
Must have a date column (adm_date or dsch_date)
Must have a value column (should just use record_flag from the query)
A plotly plot
Steven P. Sanderson II, MPH
1 2 3 4 5 6 7 8 | library(timetk)
library(dplyr)
library(tibble)
coded_consults_seasonal_diagnositcs_plt(
.data = coded_consults_query(.resp_pty = "013128")
, .date_col = dsch_date
, .value_col = record_flag
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.