I am trying to get a grouped boxplot working using Seaborn as per the example
I can get the above example working, however the line:
tips = sns.load_
Download all csv files(zipped) to be used for your example from here.
Extract the zip file to a local directory and launch your jupyter notebook from the same directory. Run the following commands in jupyter notebook:
import pandas as pd
tips = pd.read_csv('seaborn-data-master/tips.csv')
you're good to work with your example now!