I am wondering how I can make the following type of plot in Python (preferably matplotlib):
I would like four categories along the y-axis, and then the dates along the x-axis just as in the figure.
I have a CSV file with two columns [category], [date]. The date format is: dd-mm-yyy.
Extract:
category1,05-01-2020
category1,02-02-2020
category3,06-03-2020
category2,12-04-2020
etc...
Help will be appreciated!