donkirkby / zero-play

Teach a computer to play any game.
https://donkirkby.github.io/zero-play/
MIT License
10 stars 1 forks source link

Bump seaborn from 0.11.1 to 0.11.2 #70

Closed dependabot[bot] closed 3 years ago

dependabot[bot] commented 3 years ago

Bumps seaborn from 0.11.1 to 0.11.2.

Release notes

Sourced from seaborn's releases.

v0.11.2 (August 2021)

This is a minor release that addresses issues in the v0.11 series and adds a small number of targeted enhancements. It is a recommended upgrade for all users.

  • |Docs| A paper describing seaborn has been published in the Journal of Open Source Software. The paper serves as an introduction to the library and can be used to cite seaborn if it has been integral to a scientific publication.

  • |API| |Feature| In lmplot, added a new facet_kws parameter and deprecated the sharex, sharey, and legend_out parameters from the function signature; pass them in a facet_kws dictionary instead (mwaskom/seaborn#2576).

  • |Feature| Added a move_legend convenience function for repositioning the legend on an existing axes or figure, along with updating its properties. This function should be preferred over calling ax.legend with no legend data, which does not reliably work across seaborn plot types (mwaskom/seaborn#2643).

  • |Feature| In histplot, added stat="percent" as an option for normalization such that bar heights sum to 100 and stat="proportion" as an alias for the existing stat="probability" (mwaskom/seaborn#2461, mwaskom/seaborn#2634).

  • |Feature| Added FacetGrid.refline and JointGrid.refline methods for plotting horizontal and/or vertical reference lines on every subplot in one step (mwaskom/seaborn#2620).

  • |Feature| In kdeplot, added a warn_singular parameter to silence the warning about data with zero variance (mwaskom/seaborn#2566).

  • |Enhancement| In histplot, improved performance with large datasets and many groupings/facets (mwaskom/seaborn#2559, mwaskom/seaborn#2570).

  • |Enhancement| The FacetGrid, PairGrid, and JointGrid objects now reference the underlying matplotlib figure with a .figure attribute. The existing .fig attribute still exists but is discouraged and may eventually be deprecated. The effect is that you can now call obj.figure on the return value from any seaborn function to access the matplotlib object (mwaskom/seaborn#2639).

  • |Enhancement| In FacetGrid and functions that use it, visibility of the interior axis labels is now disabled, and exterior axis labels are no longer erased when adding additional layers. This produces the same results for plots made by seaborn functions, but it may produce different (better, in most cases) results for customized facet plots (mwaskom/seaborn#2583).

  • |Enhancement| In FacetGrid, PairGrid, and functions that use them, the matplotlib figure.autolayout parameter is disabled to avoid having the legend overlap the plot (mwaskom/seaborn#2571).

  • |Enhancement| The load_dataset helper now produces a more informative error when fed a dataframe, easing a common beginner mistake (mwaskom/seaborn#2604).

  • |Fix| |Enhancement| Improved robustness to missing data, including some additional support for the pd.NA type (mwaskom/seaborn#2417, mwaskom/seaborn#2435).

  • |Fix| In ecdfplot and rugplot, fixed a bug where results were incorrect if the data axis had a log scale before plotting (mwaskom/seaborn#2504).

  • |Fix| In histplot, fixed a bug where using shrink with non-discrete bins shifted bar positions inaccurately (mwaskom/seaborn#2477).

  • |Fix| In displot, fixed a bug where common_norm=False was ignored when faceting was used without assigning hue (mwaskom/seaborn#2468).

  • |Fix| In histplot, fixed two bugs where automatically computed edge widths were too thick for log-scaled histograms and for categorical histograms on the y axis (mwaskom/seaborn#2522).

  • |Fix| In histplot and kdeplot, fixed a bug where the alpha parameter was ignored when fill=False (mwaskom/seaborn#2460).

  • |Fix| In histplot and kdeplot, fixed a bug where the multiple parameter was ignored when hue was provided as a vector without a name (mwaskom/seaborn#2462).

  • |Fix| In displot, the default alpha value now adjusts to a provided multiple parameter even when hue is not assigned (mwaskom/seaborn#2462).

  • |Fix| In displot, fixed a bug that caused faceted 2D histograms to error out with common_bins=False (mwaskom/seaborn#2640).

  • |Fix| In rugplot, fixed a bug that prevented the use of datetime data (mwaskom/seaborn#2458).

  • |Fix| In relplot and displot, fixed a bug where the dataframe attached to the returned FacetGrid object dropped columns that were not used in the plot (mwaskom/seaborn#2623).

  • |Fix| In relplot, fixed an error that would be raised when one of the column names in the dataframe shared a name with one of the plot variables (mwaskom/seaborn#2581).

  • |Fix| In the relational plots, fixed a bug where legend entries for the size semantic were incorrect when size_norm extrapolated beyond the range of the data (mwaskom/seaborn#2580).

... (truncated)

Changelog

Sourced from seaborn's changelog.

.. _whatsnew:

.. currentmodule:: seaborn

.. role:: raw-html(raw) :format: html

.. role:: raw-latex(raw) :format: latex

.. |API| replace:: :raw-html:<span class="badge badge-api">API</span> :raw-latex:{\small\sc [API]} .. |Defaults| replace:: :raw-html:<span class="badge badge-defaults">Defaults</span> :raw-latex:{\small\sc [Defaults]} .. |Docs| replace:: :raw-html:<span class="badge badge-docs">Docs</span> :raw-latex:{\small\sc [Docs]} .. |Feature| replace:: :raw-html:<span class="badge badge-feature">Feature</span> :raw-latex:{\small\sc [Feature]} .. |Enhancement| replace:: :raw-html:<span class="badge badge-enhancement">Enhancement</span> :raw-latex:{\small\sc [Enhancement]} .. |Fix| replace:: :raw-html:<span class="badge badge-fix">Fix</span> :raw-latex:{\small\sc [Fix]}

What's new in each version

This page contains information about what has changed in each new version of seaborn.

.. raw:: html

.. include:: releases/v0.12.0.txt

.. include:: releases/v0.11.2.txt

.. include:: releases/v0.11.1.txt

.. include:: releases/v0.11.0.txt

.. include:: releases/v0.10.1.txt

.. include:: releases/v0.10.0.txt

.. include:: releases/v0.9.1.txt

.. include:: releases/v0.9.0.txt

.. include:: releases/v0.8.1.txt

.. include:: releases/v0.8.0.txt

.. include:: releases/v0.7.1.txt

.. include:: releases/v0.7.0.txt

... (truncated)

Commits
  • 703259f Release v0.11.2
  • 2a3cd5e Set version to v0.11.2
  • 8661c6e Fix tiny release note issues
  • 746ef8d Make autoclass generate pages for all methods (#2645)
  • 0cd5469 Add a move_legend convenience function (#2643)
  • f0a77a9 Add Grid.figure to (eventually) replace Grid.fig (#2639)
  • 9466eb2 Abstract logic of forcing figure draw with matplotlib backcompat (#2426)
  • f8de332 Fix error from bivariate displot with common_bins=False (#2640)
  • 1317458 Release v0.11.2.rc0
  • be65400 Fix non-removed interior axis labels and diagonal legends in PairGrid (#2637)
  • Additional commits viewable in compare view


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
codecov-commenter commented 3 years ago

Codecov Report

Merging #70 (e37d047) into master (6a71d8e) will not change coverage. The diff coverage is n/a.

Impacted file tree graph

@@           Coverage Diff           @@
##           master      #70   +/-   ##
=======================================
  Coverage   54.75%   54.75%           
=======================================
  Files          41       41           
  Lines        2816     2816           
=======================================
  Hits         1542     1542           
  Misses       1274     1274           

Continue to review full report at Codecov.

Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update 6a71d8e...e37d047. Read the comment docs.