Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
seaborn scatterplot
#1
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]
Reply
#2
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
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  How do you create a scatterplot of dataframe using matplotlib? asdad 2 855 Dec-07-2022, 04:53 PM
Last Post: Larz60+
  Trying to loop through code to plot seaborn line plots across multiple subplots eyavuz21 0 1,644 Dec-05-2022, 10:46 AM
Last Post: eyavuz21
  How to plot seaborn heatmap on top of a background circle SriRajesh 0 1,398 Jul-09-2022, 04:00 AM
Last Post: SriRajesh
  Installing and Using Seaborn Led_Zeppelin 4 2,539 Jun-07-2022, 09:44 PM
Last Post: snippsat
  titanic from Seaborn matador 3 4,631 Aug-20-2020, 12:13 PM
Last Post: buran
  y-axis on seaborn heatmap not aligned properly amjass12 0 2,814 Oct-01-2019, 10:37 AM
Last Post: amjass12
  How to manually define color bar scale in seaborn heatmap SriRajesh 3 18,261 Sep-08-2019, 11:12 AM
Last Post: RudraMohan
  How to plot multiple scatter plots in seaborn vikola 2 6,469 Jul-14-2019, 10:30 AM
Last Post: vikola

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020