1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
|
.. raw:: html
<style type="text/css">
.thumbnail {{
position: relative;
float: left;
margin: 10px;
width: 180px;
height: 200px;
}}
.thumbnail img {{
position: absolute;
display: inline;
left: 0;
width: 170px;
height: 170px;
}}
</style>
seaborn: statistical data visualization
=======================================
.. raw:: html
<div style="clear: both"></div>
<div class="container-fluid hidden-xs hidden-sm">
<div class="row">
<a href="examples/scatterplot_matrix.html">
<div class="col-md-2 thumbnail">
<img src="_static/scatterplot_matrix_thumb.png">
</div>
</a>
<a href="examples/errorband_lineplots.html">
<div class="col-md-2 thumbnail">
<img src="_static/errorband_lineplots_thumb.png">
</div>
</a>
<a href="examples/different_scatter_variables.html">
<div class="col-md-2 thumbnail">
<img src="_static/different_scatter_variables_thumb.png">
</div>
</a>
<a href="examples/horizontal_boxplot.html">
<div class="col-md-2 thumbnail">
<img src="_static/horizontal_boxplot_thumb.png">
</div>
</a>
<a href="examples/regression_marginals.html">
<div class="col-md-2 thumbnail">
<img src="_static/regression_marginals_thumb.png">
</div>
</a>
<a href="examples/many_facets.html">
<div class="col-md-2 thumbnail">
<img src="_static/many_facets_thumb.png">
</div>
</a>
</div>
</div>
<br>
<div class="container-fluid">
<div class="row">
<div class="col-md-6">
Seaborn is a Python data visualization library based on `matplotlib
<https://matplotlib.org>`_. It provides a high-level interface for drawing
attractive and informative statistical graphics.
For a brief introduction to the ideas behind the library, you can read the
:ref:`introductory notes <introduction>`. Visit the :ref:`installation page
<installing>` to see how you can download the package. You can browse the
:ref:`example gallery <example_gallery>` to see what you can do with seaborn,
and then check out the :ref:`tutorial <tutorial>` and :ref:`API reference
<api_ref>` to find out how.
To see the code or report a bug, please visit the `github repository
<https://github.com/mwaskom/seaborn>`_. General support issues are most at home on `stackoverflow <https://stackoverflow.com/>`_, where there is a seaborn tag.
.. raw:: html
</div>
<div class="col-md-3">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Contents</h3>
</div>
<div class="panel-body">
.. toctree::
:maxdepth: 1
Introduction <introduction>
Release notes <whatsnew>
Installing <installing>
Example gallery <examples/index>
Tutorial <tutorial>
API reference <api>
.. raw:: html
</div>
</div>
</div>
<div class="col-md-3">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Features</h3>
</div>
<div class="panel-body">
* Relational: :ref:`API <relational_api>` | :ref:`Tutorial <relational_tutorial>`
* Categorical: :ref:`API <categorical_api>` | :ref:`Tutorial <categorical_tutorial>`
* Distributions: :ref:`API <distribution_api>` | :ref:`Tutorial <distribution_tutorial>`
* Regressions: :ref:`API <regression_api>` | :ref:`Tutorial <regression_tutorial>`
* Multiples: :ref:`API <grid_api>` | :ref:`Tutorial <grid_tutorial>`
* Style: :ref:`API <style_api>` | :ref:`Tutorial <aesthetics_tutorial>`
* Color: :ref:`API <palette_api>` | :ref:`Tutorial <palette_tutorial>`
.. raw:: html
</div>
</div>
</div>
</div>
</div>
|