README.md

gitgantt

The goal of gitgantt is to make it easier to create project plans via GitHub.

Problem: you need to show your plan in a report or funding application, but all the planned work is stashed in GitHub issues.

Solution: add lines containing GanttStart: and GanttDue: to your issues and use gitgantt to convert them into an attractive Gantt chart in a single line of code!

library(gitgantt)
gg_timevis(owner = "robinlovelace", repo = "gitgantt")
#> 3 issues returned for the repo gitgantt

Installation

Install the development version from GitHub with:

remotes::install_github("robinlovelace/gitgantt")

How it works

The packages uses gh to extract issue data from GitHub and code inspired by jennybc/analyze-github-stuff-with-r to clean the data into a tibble:

issue_list = gg_issue_list(owner = "ATFutures", repo = "who3")
#> 6 issues returned for the repo who3
issue_df = gg_issue_df(issue_list)
issue_df
#> # A tibble: 6 x 7
#>   number title         body          start_date due_date   state created_at
#>    <int> <chr>         <chr>         <date>     <date>     <chr> <date>    
#> 1      6 Add Gantt ch… ""            NA         NA         clos… 2019-06-05
#> 2      5 Adaptation M… "GanttStart:… 2019-10-01 2019-11-01 open  2019-05-29
#> 3      4 User Manual   "GanttStart:… 2019-09-01 2019-10-01 open  2019-05-29
#> 4      3 HEAT Integra… "Including t… 2019-08-01 2019-09-01 open  2019-05-29
#> 5      2 scenario dev… "GanttStart:… 2019-07-01 2019-08-01 open  2019-05-29
#> 6      1 Demo transla… ""            NA         NA         open  2018-12-07

Thanks

This project is inspired by and builds on:



Robinlovelace/gitgantt documentation built on June 6, 2019, 12:01 a.m.