pystitch / stitch

Write reproducible reports in Markdown
https://pystitch.github.io
MIT License
441 stars 13 forks source link

Multiple kernels break graphics #9

Closed TomAugspurger closed 8 years ago

TomAugspurger commented 8 years ago
%matplotlib inline
import pandas as pd
import seaborn as sns
df = sns.load_dataset("iris")
sns.set()
sns.pairplot(df, hue="species")
x <- 2
%matplotlib inline
import pandas as pd
import seaborn as sns
df = sns.load_dataset("iris")
sns.set()
sns.pairplot(df, hue="species")
TomAugspurger commented 8 years ago

This has been fixed, but not sure how ¯\_(ツ)_/¯