I have a df like the following:
DATE_MIN DATE_MAX
214 1994-06-29 2010-07-12
125 1969-10-26 2011-10-10
123 2013-07-02 2015-01-29
74 2006-01-05 2016-06-20
Columns are: DATE_MIN, DATE_MAX
I would like to plot a long vertical chart with as many horizontal lines as df rows.
- With date range in x axis
- With index in y axis, hence each line is horizontal, they don't cross each other.
So I want to show which rows have some time overlapping because the lines would have overlapping area (not crossing).
Super thanks in advance!