sns.set_style("white")
g =sns.lmplot(x="diet_19", y="Se_inv_19", hue="taxa", data=Data, markers=
["o","v","s","*","P","x"]);
###for Axes
plt.ylim(-5, 15)
plt.xlim(-0.5, 15)
plt.xlabel('diet_19',fontsize=18)
plt.ylabel('Se_inv_19',fontsize=18)
plt.title('Diet Vs Se in different taxa', fontsize=20)
###for Axes tick mark labels
for axes in g.axes.flat:
_ = axes.set_xticklabels(axes.get_xticklabels(), fontsize = 16)
for axes in g.axes.flat:
_ = axes.set_yticklabels(axes.get_yticklabels(), fontsize = 16)
###for the legend,
Already legend is coming outside of the plot, but I want to change the font size of text (basically 5 taxa names) and title
Thank you in advance for your kind help. Banamali