Questions tagged [jointplot]

For plotting a jointplot in python or r, using seaborn or ggExtra

Joint Plots are used to explore relationships between bivariate data, as well as their distributions at the same time. Typically, a joint plot consists of a central plot with s at the top and right edges. The scatter plot shows data from both variables, while each histogram describes a single variable.

In the plotting library has a sns.jointplot function.
In the library ggExtra provides a function ggMarginal for extending ggplot2 scatterplots.

51 questions
0
votes
2 answers

Relabelling ticks on Seaborn axes?

I'm doing a log-log plot with Seaborn; the data is actually derived from a StackOverflow developer survey. I tried using the built-in log scale, but the results didn't make sense, so this simply calculates the logs before plotting. df =…
CharlesW
  • 955
  • 8
  • 18
0
votes
1 answer

How to show the vertical scale of marginal histogram in a jointplot

In Seaborn jointplot, the marginal histograms do not show the y axis values. How can I get these values? The documentation doesn't show any arguments to change this behavior.
Tomoon
  • 91
  • 7
0
votes
1 answer

How to manually change the tick labels of the margin plots on a Seaborn jointplot

I am trying to use a log scale as the margin plots for my seaborn jointplot. I am usings set_xticks() and set_yticks(), but my changes do not appear. Here is my code below and the resulting graph: import matplotlib.pyplot as plt %matplotlib…
-1
votes
1 answer

Move existing jointplot legend

I tried answers from a previous question to no avail in Matplotlib 1.5.1. I have a seaborn figure: import seaborn as sns %matplotlib inline import matplotlib.pyplot as plt import numpy as np tips = sns.load_dataset("tips") g =…
Dima Lituiev
  • 12,544
  • 10
  • 41
  • 58
-2
votes
1 answer

How to make seaborn joint plots faster?

I am trying to make a 2D plot with a bivariate density graph with seaborn. Basically, it shows the density of the joint occurrence of two variables in the 2D plane, like the image show below The x and y data for this plot are stored in a dataframe…
1 2 3
4