Skip to content

Instantly share code, notes, and snippets.

View finger563's full-sized avatar
๐Ÿ˜„

William Emfinger finger563

๐Ÿ˜„
View GitHub Profile
@finger563
finger563 / gantt.py
Created September 2, 2021 03:26 — forked from Thiagobc23/gantt.py
Gantt Chart with Matplotlib v2
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
from matplotlib.patches import Patch
from pandas import Timestamp
##### DATA #####
data = {'Task': {0: 'TSK M',
1: 'TSK N',
2: 'TSK L',
@finger563
finger563 / gantt.py
Created September 2, 2021 03:26 — forked from Thiagobc23/gantt.py
Gantt chart with Matplotlib
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
from matplotlib.patches import Patch
from pandas import Timestamp
##### DATA #####
data = {'Task': {0: 'TSK M',
1: 'TSK N',
2: 'TSK L',