I would like to remove the title from my seaborn lineplot legend. I tried using this answer to no avail:
import matplotlib.pyplot as plt import seaborn as sn
import seaborn as sns g = sns.lineplot(x="myXs", y="myYs", hue="myHue", data=mydf) g.legend_.set_title(None)