Learn Before
Concept

Datasets in seaborn

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'anagrams', 'anscombe', 'attention', 'brain_networks', 'car_crashes', '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.

0

1

Updated 2021-02-05

Tags

Data Science