Donut plots are not currently in an error state which is causing the app to disconnect. Errors are created during steps to parse out individual summary tables. As of today, the tables need to be transformed in order to create the appropriate dataframe. Two possible causes:
- The queried data structure has been altered as of today, or
- this happens on the first of the month, every month, when there is only a single row of data.
Example fix:
line 138 table2 <- as.data.frame(table2)
line 138 table2 <- as.data.frame(t(table2))
If the latter is the problem, then a logic statement needs to be included for single rows of data.
Donut plots are not currently in an error state which is causing the app to disconnect. Errors are created during steps to parse out individual summary tables. As of today, the tables need to be transformed in order to create the appropriate dataframe. Two possible causes:
Example fix:
line 138
table2 <- as.data.frame(table2)line 138
table2 <- as.data.frame(t(table2))If the latter is the problem, then a logic statement needs to be included for single rows of data.