You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
processanimateR::animate_process(rankdir = "TD", mode = "absolute", initial_state = "paused")
Warning: Object is activity log. Timestamps are stored in 0 columns.Error in rlang::sym():
! Can't convert NULL to a symbol.
Backtrace:
It seems processanimatR is not fully compatibly to the activtylog format yet. While converting to event log helps, let's leave this issue here until proper compatibility is in place
Create activity log
activities <- df %>%
bupaR::activitylog(case_id = "order_id", activity_id = "activity_id", timestamps = c("start", "complete"), resource_id = "resource_id")
Works when mode = "off" but breaks when mode = "absolute" or "relative"
activities %>%
processanimateR::animate_process(rankdir = "TD", mode = "off", initial_state = "paused")
activities %>%
processanimateR::animate_process(rankdir = "TD", mode = "absolute", initial_state = "paused")
Warning: Object is activity log. Timestamps are stored in 0 columns.Error in
rlang::sym()
:! Can't convert NULL to a symbol.
Backtrace:
The workaround is to convert to eventlog()
activities %>%
bupaR::to_eventlog() %>%
processanimateR::animate_process(rankdir = "TD", mode = "absolute", initial_state = "paused")
The text was updated successfully, but these errors were encountered: