Wishlist for sns.scatterplot
See original GitHub issueOpen comment thread for functionality that would be good to have in a sns.scatterplot
function. Some things that have been mentioned are:
- Scaling point size off a continuous variable that isn’t directly interpretable as a point size (cf. #310)
- Better default colors (although #293 would also fix this)
- A better interface for handling continuous point coloring in a
FacetGrid
context, this currently requires a bit of a hack as color is the fourth positional argument so you would need to pass in a dummy argument for size. - Jittering x and y points (currently build into regplot)
What else?
Issue Analytics
- State:
- Created 9 years ago
- Comments:6 (3 by maintainers)
Top Results From Across the Web
seaborn.scatterplot — seaborn 0.12.1 documentation - PyData |
Draw a scatter plot with possibility of several semantic groupings. The relationship between x and y can be shown for different subsets of...
Read more >Seaborn Scatter Plot using sns.scatterplot()
The seaborn scatter plot use to find the relationship between x and y variable. It may be both a numeric type or one...
Read more >How to Make a Seaborn Scatter Plot - Sharp Sight
This tutorial will show you how to make a Seaborn scatter plot. It will explain the syntax of the sns.scatterplot function, including some ......
Read more >Scatterplot using Seaborn in Python - GeeksforGeeks
Scatter Plot · Syntax: seaborn. · Parameters: · x, y: Input data variables that should be numeric.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
In general, it’d be great to be able to change marker size/style depending on the data. E.g.
It’s currently a drag to do this with
sns.lmplot
.One thing I often wish for is the ability to specify a label for each point, that would be shown as text next to the point. This is very useful for scatterplots with a relatively small number of points which you want to identify individually (e.g., countries, company names, specific products), and it’s currently a pain with matplotlib because you can’t pass a vector of strings to a single
text
call. Ideally the point labels could then be turned on and off with a quick command.