sch_title | R Documentation |
A title for project identification. It depends on user of the class. It is used to set or get project's title.
sch_title(sch, new_value)
sch |
A schedule object. |
new_value |
A new title. |
A schedule object with new title.
A title.
sch_relations()
, sch_plan()
, sch_new()
,
sch_validate()
, sch_activities()
, sch_reference()
,
sch_duration()
.
sch <- sch_new() %>% sch_add_activities( id = c(1L, 2L, 3L, 4L), name = c("A", "B", "C", "D"), duration = c(3L, 4L, 9L, 1L) ) %>% sch_add_relations( from = c(1L, 2L, 2L), to = c(2L, 3L, 4L) ) %>% sch_plan() sch_title(sch) # empty sch %<>% sch_title("New title") sch_title(sch)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.