
Munge data for journey visualization plot
munge_journey.RdThis function provides the initial munging steps to process the data in a way
that can then be handled by plot_journey
Value
processed dataframe for use with plot_journey
See also
plot_journey for visualizing this data or
follow_applicant for a tabular view of all events
Other app_journey:
follow_applicant(),
plot_journey()
Examples
if (FALSE) { # \dontrun{
df_mp <- read_parquet(mp_path)
df_mp %>%
munge_journey("applicant-123456") %>%
plot_journey(export = "../Images/")
} # }