.. _imseabornrst: ======= seaborn ======= .. only:: html **Links:** :download:`notebook `, :downloadlink:`html `, :download:`PDF `, :download:`python `, :downloadlink:`slides `, :githublink:`GitHub|_doc/notebooks/2016/pydata/im_seaborn.ipynb|*` *seaborn* is an extension of `matplotlib `__ for statisticians. Graphs are really nice and famous among statisticians. However, it is difficult to draw a graph with weighted observations. `documentation `__ `source `__ `installation `__ `tutorial `__ `gallerie `__ .. code:: ipython3 %matplotlib inline .. code:: ipython3 from jyquickhelper import add_notebook_menu add_notebook_menu() .. contents:: :local: example ------- .. code:: ipython3 import numpy import seaborn x = numpy.random.normal(size=100) seaborn.distplot(x) .. parsed-literal:: .. image:: im_seaborn_5_1.png .. code:: ipython3 iris = seaborn.load_dataset("iris") seaborn.pairplot(iris) .. parsed-literal:: .. image:: im_seaborn_6_1.png