I have the following data frame:
data = pd.DataFrame(data={'group': ['A', 'B', 'C'],
'start': [2, 5, 9], 'end': [9, 8, 6]})
I would love to create the following graph, I've searched everywhere and couldn't find an answer:
graph
I have looked everywhere, on matplotlib website, on pandas, i couldn't find a simple way to perform it.


