sch_add_activities_tibble | R Documentation |
Add activities tibble to a schedule.
sch_add_activities_tibble(sch, atb)
sch |
A schedule object. |
atb |
A tibble with activities definitions. |
A schedule with a activity tibble (atb) added.
atb <- tibble::tibble( id = 1:17, name = paste("a", as.character(1:17), sep=""), duration = c(1L,2L,2L,4L,3L,3L,3L,2L,1L,1L,2L,1L,1L,1L,1L,2L,1L) ) sch <- sch_new() %>% sch_add_activities_tibble(atb) %>% sch_plan() sch_duration(sch) #4 # sch_activities(sch)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.