Description Usage Arguments Value Examples
Add activities tibble to a schedule.
1 | sch_add_activities_tibble(sch, atb)
|
sch |
A schedule object. |
atb |
A tibble with activities definitions. |
A schedule with a activity tibble (atb) added.
1 2 3 4 5 6 7 8 9 10 | 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.