Seaborn owns some classic data sets for basic analysis and plotting. With the Internet connected, it can be obtained through the sns.load_dataset(). The returned data is Pandas.DataFrame object. There are 18 available datasets:
′anagrams′,′anscombe′,′attention′,′brainnetworks′,′carcrashes′,′diamonds′,′dots′,′exercise′,′flights′,′fmri′,′gammas′,′geyser′,′iris′,′mpg′,′penguins′,′planets′,′tips′,′titanic′
This name list can be obtained by using sns.get_dataset_names(). Among them, iris, tips, titanic are freguently used in various pratice and tutorials.