seaborn
seaborn copied to clipboard
Elongated Jointplot Issue (Distorted graph)
We are running into an issue with Python 3.12 and Seaborn 0.13.0 that produces elongated jointplots. See screenshot below.
Here is what this should look like, running Python 3.11.4
I would be surprised if this were really about the version of Python itself. You also have different versions of most dependencies. Do you have scipy installed, and if so, what version(s)?
Can you please also share a copy-paste-able example (using an example dataset) rather than a screenshot of code? That makes it much easier to help...
Any update on a reproducible example @cfreder2? I am not seeing this using an analogous built-in dataset:
import seaborn as sns
mpg = sns.load_dataset("mpg")
sns.kdeplot(mpg, x="horsepower", y="mpg")
So you will need to be in the loop to help debug as to the specifics of your data / environment...
Hi, there. I am experiencing a very similar problem between Python 3.10.12 and 3.11.8. The exact same packages and code yield very different 2-D KDE plots. My package versions are attached.
The following was generated using Python 3.11.8:
The following was generated using Python 3.10.12: