Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Increase errorbar flexibility #2407

Merged
merged 14 commits into from Jan 2, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions doc/docstrings/lineplot.ipynb
Expand Up @@ -222,7 +222,7 @@
"cell_type": "raw",
"metadata": {},
"source": [
"Show error bars instead of error bands and plot the 68% confidence interval (standard error):"
"Show error bars instead of error bands and extend them to two standard error widths:"
]
},
{
Expand All @@ -232,7 +232,7 @@
"outputs": [],
"source": [
"sns.lineplot(\n",
" data=fmri, x=\"timepoint\", y=\"signal\", hue=\"event\", err_style=\"bars\", ci=68\n",
" data=fmri, x=\"timepoint\", y=\"signal\", hue=\"event\", err_style=\"bars\", errorbar=(\"se\", 2),\n",
")"
]
},
Expand Down
2 changes: 2 additions & 0 deletions doc/releases/v0.12.0.txt
Expand Up @@ -2,6 +2,8 @@
v0.12.0 (Unreleased)
--------------------

- |API| |Feature| |Enhancement| TODO (Flesh this out further). Increased flexibility of what can be shown by the internally-calculated errorbars (:pr:2407).

- Made `scipy` an optional dependency and added `pip install seaborn[all]` as a method for ensuring the availability of compatible `scipy` and `statsmodels` libraries. This has a few minor implications for existing code, which are explained in the Github pull request (:pr:`2398`).

- Following `NEP29 <https://numpy.org/neps/nep-0029-deprecation_policy.html>`_, dropped support for Python 3.6 and bumped the minimally-supported versions of the library dependencies.
Expand Down
19 changes: 19 additions & 0 deletions doc/tutorial.rst
Expand Up @@ -47,6 +47,25 @@ User guide and tutorial

tutorial/data_structure

.. raw:: html

</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="col-md-4">
<a href=./tutorial/error_bars.html>
<img src="_images/error_bars_4_0.png" class="img-responsive center-block">
</a>
</div>
<div class="col-md-8">

.. toctree::
:maxdepth: 2

tutorial/error_bars

.. raw:: html

</div>
Expand Down