Seeking help with creating a chart for each dynamically created tab in a markdown document.
The following script works well for creating the tabs ,
What i am having trouble doing is now creating a
chart based on the fields x= Report_Date and y =Percent_Met and faceted by Measure_Name for each Measure_Name for in the Clinical_Group and Provider associated with the tab in question.
here is the script i have for creating the tabs
teams <- sort(unique(df$Team))
cat('## Teams {.tabset}\n')
for(team in teams) {
cat('\n')
cat('### ', team, '{.tabset}\n')
cat('\n')