No Layout Metadata

This notebook has no layout metadata in it.


In [1]:
%matplotlib inline

In [2]:
import seaborn as sns

In [3]:
tips = sns.load_dataset('tips')

In [4]:
sns.stripplot(x="day", y="total_bill", hue="time", data=tips)


Out[4]:
<matplotlib.axes._subplots.AxesSubplot at 0x7f718cd53ba8>