fromdftogantt: Make a Gantt diagram from a dataframe

Description Usage Arguments Value Examples

Description

Make a Gantt diagram from a dataframe

Usage

1
fromdftogantt(df, width = 600, Title = " ", filename = NULL)

Arguments

df

Dataframe

width

Width of image in pixels

Title

Title of diagram

filename

Optionally write out to a html file. Default is not.

Value

A htmlwigets object representing a Gantt diagram

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
## Not run: 
# file_path <- "asana_export1.csv"
# project_start <- "2016-06-01"
# df <- parseAsana(file_path,project_start)
# df <- df[df$type %in% c(" Milestone", "Task"),]
# df[grep("Milestone", df$type),'type'] <- "crit"
# df[grep("Subtask", df$type),'type'] <- "done"
# df[grep("Task", df$type),'type'] <- "active"
# fromdftogantt(df)

## End(Not run)

edwardpmorris/AcademicRmarkdownTemplates documentation built on May 15, 2019, 11:03 p.m.