I am trying to completely remove the legend from lineplots in Seaborn. There are three lineplots in 2x2 subplots, each called like so:
g = sns.lineplot(data=df, dashes=False, ax=axs[0,1])
More specifically, I'd like to get rid of the legend in each of the three line plots, then use the fourth area in the 2x2 plot to display the legend. Any advice is appreciated!
