Dotted charts can be made with the dotted_chart
function. A dotted chart is a graph in which each activity instance is displayed with a point. The x-axis referce to the time aspect, while the y-axis refers to cases. The dotted chart function has 3 arguments
Below, you can see some examples for dotted charts with various configurations
patients %>%
dotted_chart(x = "absolute", y = "start")
## Joining, by = "patient"
patients %>%
dotted_chart(x = "absolute", y = "start", color = "employee")
## Joining, by = "patient"
patients %>%
dotted_chart(x = "relative", y = "duration", color = "employee")
## Joining, by = "patient"
The function idotted_chart
opens a shiny app which can be used to modify the arguments of the dotted chart interactively.