I am trying to use the below dataframe to create horizontal reference lines,
data = pd.DataFrame({'Drug Name':['Katrex','Acyloir','Zelorix'],'Start Date': ['2001-11-13', '2002-6-26', '2004-2-22'],'End Date': ['2002-6-25', '2004-2-21', '2006-8-21']})
In addition to this dataframe, I already have a plot showing trends over time for these drugs so I just need to create the horizontal lines for the drugs. In other words, there will be three horizontal lines in total, one for Katrex, one for Acyloir, and the one for Zelorix. Any help would be appreciated.