You can remove the legend in seaborn lmplot by setting:
sns.lmplot(x="x", y="y", data=df, legend=False)
Or, if it’s already plotted:
sns.lmplot(x="x", y="y", data=df).set(legend_out=False)
plt.legend([],[], frameon=False)
Best way: use legend=False directly in lmplot()
check this:https://www.nike.com/