12.3.10.3. ScatterplotΒΆ

demo scatterplot

Out:

C:\itom_vs2017_x64_Qt5.12.6_setup4.0\3rdParty\Python\lib\site-packages\seaborn\cm.py:1582: UserWarning:

Trying to register the cmap 'rocket' which already exists.

C:\itom_vs2017_x64_Qt5.12.6_setup4.0\3rdParty\Python\lib\site-packages\seaborn\cm.py:1583: UserWarning:

Trying to register the cmap 'rocket_r' which already exists.

C:\itom_vs2017_x64_Qt5.12.6_setup4.0\3rdParty\Python\lib\site-packages\seaborn\cm.py:1582: UserWarning:

Trying to register the cmap 'mako' which already exists.

C:\itom_vs2017_x64_Qt5.12.6_setup4.0\3rdParty\Python\lib\site-packages\seaborn\cm.py:1583: UserWarning:

Trying to register the cmap 'mako_r' which already exists.

C:\itom_vs2017_x64_Qt5.12.6_setup4.0\3rdParty\Python\lib\site-packages\seaborn\cm.py:1582: UserWarning:

Trying to register the cmap 'icefire' which already exists.

C:\itom_vs2017_x64_Qt5.12.6_setup4.0\3rdParty\Python\lib\site-packages\seaborn\cm.py:1583: UserWarning:

Trying to register the cmap 'icefire_r' which already exists.

C:\itom_vs2017_x64_Qt5.12.6_setup4.0\3rdParty\Python\lib\site-packages\seaborn\cm.py:1582: UserWarning:

Trying to register the cmap 'vlag' which already exists.

C:\itom_vs2017_x64_Qt5.12.6_setup4.0\3rdParty\Python\lib\site-packages\seaborn\cm.py:1583: UserWarning:

Trying to register the cmap 'vlag_r' which already exists.

C:\itom_vs2017_x64_Qt5.12.6_setup4.0\3rdParty\Python\lib\site-packages\seaborn\cm.py:1582: UserWarning:

Trying to register the cmap 'flare' which already exists.

C:\itom_vs2017_x64_Qt5.12.6_setup4.0\3rdParty\Python\lib\site-packages\seaborn\cm.py:1583: UserWarning:

Trying to register the cmap 'flare_r' which already exists.

C:\itom_vs2017_x64_Qt5.12.6_setup4.0\3rdParty\Python\lib\site-packages\seaborn\cm.py:1582: UserWarning:

Trying to register the cmap 'crest' which already exists.

C:\itom_vs2017_x64_Qt5.12.6_setup4.0\3rdParty\Python\lib\site-packages\seaborn\cm.py:1583: UserWarning:

Trying to register the cmap 'crest_r' which already exists.


<seaborn.axisgrid.FacetGrid object at 0x00000203B438E820>

import seaborn as sns
sns.set_theme(style="white")

# Load the example mpg dataset
mpg = sns.load_dataset("mpg")

# Plot miles per gallon against horsepower with other semantics
sns.relplot(x="horsepower", y="mpg", hue="origin", size="weight",
            sizes=(40, 400), alpha=.5, palette="muted",
            height=6, data=mpg)

Total running time of the script: ( 0 minutes 0.707 seconds)

Gallery generated by Sphinx-Gallery