[Feature request] 2D Histograms in seaborn.objects interface #3200
Unanswered
berkgercek
asked this question in
Q&A
Replies: 2 comments
-
Yes, expect support for this in the future. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Just piping in to say that I'd also really love this feature. Using a scatter plot with |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Heya,
Insofar as I'm aware, there is no way to use the existing objects in the new API to produce a 2D histogram.
I'd really like this functionality, particularly because I'd like to be able to use something like the
seaborn.histplot
function from the old API, but with the option of adding annotations to each bin so I can see the stat associated with the bin in 2D space.Currently to accomplish the above I'd have to manually bin the data using e.g. np.histogram2d and then pass it to
seaborn.heatmap
for plotting withannot=True
kwarg. While this is totally doable, I see the opportunity for the really elegant compositionality of the objects interface to shine with this.Thanks for your time!
Beta Was this translation helpful? Give feedback.
All reactions