I'm currently using seaborn to display two time series plots side by side. Each plot contains multiple time series and often the names of the series are the same between plots. I'd like to share the legend so that a time series named A on the left side is the same color as the time series named A on the right side.
Here's what I'm doing right now.
fig, axs = plt.subplots(ncols=2, figsize=(40, 15))
for dummy_val in range(2):
ts = counts[counts['dummy_category'] == dummy_val]
sns.tsplot(ts, time='day', unit='Dummy', condition='ts_name',
value='count', ax=axs[dummy_val])
plt.show()