1 2 |
1 2 3 4 5 6 7 8 | tasks <- c("Review literature", "Mung data", "Stats analysis", "Write Report")
example <- data.frame(
nome = factor(tasks, levels = tasks),
start_date = as.Date(c("2010-08-24", "2010-10-01", "2010-11-01", "2011-02-14")),
end_date = as.Date(c("2010-10-31", "2010-12-14", "2011-02-28", "2011-04-30")),
is.critical = c(TRUE, FALSE, FALSE, TRUE)
)
ggantt(tasks)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.