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_dataset("tips")
is not explained at all. I have located the tips.csv file, but I can't seem to find adequate documentation on what load_dataset specifically does. I tried to create my own csv and load this, but to no avail. I also renamed the tips file and it still worked...
My question is thus:
Where is load_dataset
actually looking for files? Can I actually use this for my own boxplots?
EDIT: I managed to get my own boxplots working using my own DataFrame
, but I am still wondering whether load_dataset
is used for anything more than mysterious tutorial examples.
load_dataset
is just a convenience function for the seaborn documentation. – Misunderstood