v0.12.0rc0
Pre-release
Pre-release
This is the first release candidate for seaborn v0.12, a major update introducing an entirely new interface along with numerous features, enhancements, and fixes for existing functionality.
To install for testing, run
pip install seaborn==0.12.0rc0
There were several renamings and API changes from the final beta release. See the referenced PRs for more information on each change.
Mark renamings
Plot API changes
- The
stat=andmove=parameters were removed fromPlot.add, which now has the following signature:Plot.add(mark, *transforms, ...). (#2948) - The
Plot.configuremethod was renamed toPlot.layout, with thefigsizeparameter changed tosize. Theshare{x,y}parameters were removed fromPlot.layout, with that functionality now supported by the newPlot.sharemethod. (#2954)
Additionally, the install extra for including statistical packages was changed from seaborn[all] to seaborn[stats]. (#2939)