parse_gleo <- function(data) {
data %>%
select(Project, Task, Details, Start, Decimal.Duration) %>%
mutate(
dt = as.Date(Start)
) %>%
group_by(Project, Task, dt) %>%
summarise(
Details = paste0(Details, collapse = ";"),
hrs = sum(Decimal.Duration))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.