rmc33
rmc33

Reputation: 65

How to add a comparison line to all plots when using Seaborn's FacetGrid

I'm trying to add the same comparison line to multiple plots using FacetGrid. Here is where I get stuck:

# Import the dataset
tips = sns.load_dataset("tips")

# Plot using FaceGrid, separated by smoke
g = sns.FacetGrid(tips, col="smoker", size=5, aspect=1.5)
g.map(plt.scatter, "tip", "total_bill")
x = np.arange(0, 50, .5)
y = 0.2*x
plt.plot(y, x, C='k')
plt.show()

Here are the results

As you can see, the line shows up on the last plot, but not the first. How do I get it on both?

Upvotes: 4

Views: 5300

Answers (2)

Sheldore
Sheldore

Reputation: 39052

Another indirect way is to get the axes object from the FacetGrid and then plot the line to each of them

g = sns.FacetGrid(tips, col="smoker", size=5, aspect=1.5)
g.map(plt.scatter, "tip", "total_bill")

axes = g.fig.axes
x = np.arange(0, 50, .5)
y = 0.2*x
for ax in axes:
    ax.plot(y, x, C='k')
plt.show()

enter image description here

Upvotes: 4

ImportanceOfBeingErnest
ImportanceOfBeingErnest

Reputation: 339220

You can map the same function to the FacetGrid.

import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns

# Import the dataset
tips = sns.load_dataset("tips")

# Plot using FaceGrid, separated by smoke
g = sns.FacetGrid(tips, col="smoker", height=5, aspect=1.5)
g.map(plt.scatter, "tip", "total_bill")

def const_line(*args, **kwargs):
    x = np.arange(0, 50, .5)
    y = 0.2*x
    plt.plot(y, x, C='k')

g.map(const_line)

plt.show()

Upvotes: 7

Related Questions