Gantt is a R package created to fast and easy designing Gantt chart for your projects. It allows you to customize it with different options like creating paths, changing colors and sizes. Package is still in development so more powerful customization options will be added in next releases.
Package usage is very simple. Drawing a Gantt chart follows four steps:
Task file should contain following columns
start date when given task startsend date when given task endstask name of tasktype string denoting task typestage string describing stage to which task belongscontrol integer saying which tasks are dependent of each other (same value means dependance)There is an example csv file task within the package
library(gantt)
file_path <- system.file("extdata", "example_task_1.csv", package = "gantt")
task <- read_task(file_path)
conf <- create_gantt_config()
gantt(task, conf)
You can view example file structure from R with