.. note::
    :class: sphx-glr-download-link-note

    Click :ref:`here <sphx_glr_download_auto_examples_plot_seaborn.py>` to download the full example code or run this example in your browser via Binder
.. rst-class:: sphx-glr-example-title

.. _sphx_glr_auto_examples_plot_seaborn.py:


Seaborn example
===============
This example demonstrates a Seaborn plot. Figures produced Matplotlib **and**
by any package that is based on Matplotlib (e.g., Seaborn), will be
captured by default. See :ref:`image_scrapers` for details.



.. image:: /auto_examples/images/sphx_glr_plot_seaborn_001.png
    :class: sphx-glr-single-img





.. code-block:: python

    # Author: Michael Waskom & Lucy Liu
    # License: BSD 3 clause

    from __future__ import division, absolute_import, print_function


    import numpy as np
    import seaborn as sns
    import matplotlib.pyplot as plt

    # Enforce the use of default set style

    # Create a noisy periodic dataset
    y_array = np.array([])
    x_array = np.array([])
    rs = np.random.RandomState(8)
    for _ in range(15):
        x = np.linspace(0, 30 / 2, 30)
        y = np.sin(x) + rs.normal(0, 1.5) + rs.normal(0, .3, 30)
        y_array = np.append(y_array, y)
        x_array = np.append(x_array, x)

    # Plot the average over replicates with confidence interval
    sns.lineplot(y=y_array, x=x_array)
    # to avoid text output
    plt.show()

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


.. _sphx_glr_download_auto_examples_plot_seaborn.py:


.. only :: html

 .. container:: sphx-glr-footer
    :class: sphx-glr-footer-example


  .. container:: binder-badge

    .. image:: https://static.mybinder.org/badge.svg
      :target: https://mybinder.org/v2/gh/sphinx-gallery/sphinx-gallery.github.io/master?urlpath=lab/tree/notebooks/auto_examples/plot_seaborn.ipynb
      :width: 150 px


  .. container:: sphx-glr-download

     :download:`Download Python source code: plot_seaborn.py <plot_seaborn.py>`



  .. container:: sphx-glr-download

     :download:`Download Jupyter notebook: plot_seaborn.ipynb <plot_seaborn.ipynb>`


.. only:: html

 .. rst-class:: sphx-glr-signature

    `Gallery generated by Sphinx-Gallery <https://sphinx-gallery.readthedocs.io>`_
