How to add additional plots to a seaborn FacetGrid and specify colors

I think you want units in the call to relplot and then add a layer of lineplot using map: import seaborn as sns import pandas as pd fm = sns.load_dataset(‘fmri’).query(“event == ‘stim'”) g = sns.relplot( data=fm, kind=’line’, col=”region”, x=’timepoint’, y=’signal’, units=”subject”, estimator=None, color=”.7″ ) g.data = fm # Hack needed to work around bug on … Read more