Questions tagged [jointgrid]

For questions related to seaborn.JointGrid, which creates a grid for drawing a bivariate plot with marginal univariate plots.

3 questions
5
votes
2 answers

How to get jointplot markers with no fill

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 argument was found in previous versions of seaborn but was…
develarist
  • 1,224
  • 1
  • 13
  • 34
1
vote
2 answers

How to remove a JointGrid margin frame

import pandas as pd import seaborn as sns import matplotlib.pyplot as plt # sample data penguins = sns.load_dataset('penguins') g = sns.JointGrid(data=penguins, x='bill_length_mm', y='bill_depth_mm', space=0)…
ai-py
  • 177
  • 1
  • 7
0
votes
1 answer

Remove Bins from Marginal histplot in Jointplot

I am trying to remove the superposed line of the bins (derived from the hisplot part of the jointplot function) in the lateral plot here in this figure (in white): column1 = "F" array1 = np.random.randn(400) column2 = "R" array2 =…
ChYoung
  • 3
  • 3