Description Usage Arguments Value See Also Examples
Return a tibble with all non critical activities of a schedule in an insertion order.
1 |
sch |
A schedule object. |
A tibble with non critical activities.
sch_get_activity()
, sch_add_activity()
, sch_activities()
,
sch_critical_activities()
, sch_has_any_activity()
, sch_nr_activities()
,
sch_add_activities()
.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | sch <- sch_new() %>%
sch_title("Fictitious Project Example") %>%
sch_reference("VANHOUCKE, Mario. Measuring time:
improving project performance using earned value management.
Gent: Springer, 2009, p. 18") %>%
sch_add_activity( 1L, "a1" , 0L, 2,3,4) %>%
sch_add_activity( 2L, "a2" , 4L, 5) %>%
sch_add_activity( 3L, "a3" , 9L, 10) %>%
sch_add_activity( 4L, "a4" , 1L, 6) %>%
sch_add_activity( 5L, "a5" , 4L, 9) %>%
sch_add_activity( 6L, "a6" , 5L, 7) %>%
sch_add_activity( 7L, "a7" , 1L, 8,11) %>%
sch_add_activity( 8L, "a8" , 7L, 12) %>%
sch_add_activity( 9L, "a9" , 8L, 12) %>%
sch_add_activity( 10L, "a10", 3L, 12) %>%
sch_add_activity( 11L, "a11", 3L, 12) %>%
sch_add_activity( 12L, "a12", 0L) %>%
sch_plan()
sch_non_critical_activities(sch)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.