Python Forum

Full Version: seaborn scatterplot
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi im quite new with this library and I cant find the way to display this labels in a nicer way, they are all group together

[Image: 2020-03-02.png]
Try to increase figure size, e.g.
import seaborn as sns
sns.set(rc={'figure.figsize':(15,15)})
Or maybe save the figure as an image, e.g.
import matplotlib.pyplot as plt

plt.gcf().savefig("sample.png", dpi=300) # somewhere after sns.relplot