jointplot Questions
2
Solved
I'm using seaborn to plot some biology data.
I want a distribution of one gene against another (expression in ~300 patients), and the following code works fine.
graph = sns.jointplot(x='Gene1', y='...
Eipper asked 1/8, 2017 at 13:53
1
Solved
How to remove the legend in the seaborn.JoingGrid plot?
The reference code is like below:
import matplotlib.pyplot as plt
import seaborn as sns
penguins = sns.load_dataset("penguins")
g...
2
Solved
matplotlib.pyplot.scatter() has a facecolors=None argument that will give datapoints the appearance of being hollow on the inside. How to get the same look for seaborn.jointplot()?
The same argumen...
Headrace asked 15/9, 2020 at 2:48
2
I'm interested in using the seaborn joint plot for visualizing correlation between two numpy arrays. I like the visual distinction that the kind='hex' parameter gives, but I would also like to know...
4
Solved
I have plotted a Seaborn JointPlot from a set of "observed counts vs concentration" which are stored in a pandas DataFrame. I would like to overlay (on the same set of axes) a marginal (i...
1
I have a problem with the colorbar of my kdeplot.
It should show the percentage in each bin starting with 0%.
I tried two different ways, but both visualizations are not exactly what I need.
The ...
1
I'm trying to plot a colorbar next to my density plot with marginal axes.
It does plot the colorbar, but unfortunately not on the side.
That's what a tried so far:
sns.jointplot(x,y, data=df3, kin...
1
Solved
How to set axis to logarithmic scale in a seaborn jointplot? I can't find any log arguments in seaborn.jointplot
Notebook
import seaborn as sns
import pandas as pd
df = pd.read_csv("https://s...
Kee asked 27/6, 2018 at 8:52
2
Solved
I am using seaborn to create a kdeplot with marginal distribution as described in this answer. I adapted the code a little to give me this:
import matplotlib.pyplot as plt
import seaborn as sns
i...
Columbic asked 5/4, 2018 at 11:17
1
How can I change the tick placement in a seaborn jointplot or JointGrid?
I'm looking for something similar to matplotlib's plt.xticks.
1
Solved
I have an array of 90 000 pairs I want to plot with seaborn jointplot.
Is there a way to adjust side histograms bin size?
Should I try to plot it with an other package?
1
© 2022 - 2024 — McMap. All rights reserved.