I have a Seaborn line plot and I would like to add a single dotted line that represents the 'baseline' value to the plot (y=50). Currently I just have
sns.lineplot(data=df, x=df.index, y="Average Score")
and it looks like a normal line plot.
I was thinking of something along the lines of adding a column to my Pandas dataframe that has all values equal to 50 and then including it in the hue somehow?