You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* remove all fig and dpi arguments, instead generate default axis if no ax passed
* set equal aspect manually in docstring demos for qqplot and circmean
* rm qqplot title
* move scatter_kws keyword to kwargs and color LOA span to match scatter
* add qqplot kwargs for scatter
* remove all fig and dpi arguments, instead generate default axis if no ax passed
* set equal aspect manually in docstring demos for qqplot and circmean
* rm qqplot title
* move scatter_kws keyword to kwargs and color LOA span to match scatter
* add qqplot kwargs for scatter
* Added square keyword argument to qqplot and plot_circmean
* updated changelog
* Updated plotting tests
* update docstring for lint passing
* update kwargs using .update instead of | for prior Python compatibility
* Conform kwargs updating to match other pinguoin functions
* add scatter kwargs to unittests
* Minor documentation update
:py:method: not working + add ptests to API
Co-authored-by: Raphael Vallat <raphaelvallat9@gmail.com>
Copy file name to clipboardexpand all lines: docs/changelog.rst
+1
Original file line number
Diff line number
Diff line change
@@ -28,6 +28,7 @@ We have added the :py:func:`pingouin.ptests` function to calculate a T-test (T-
28
28
**Improvements**
29
29
30
30
- Added customization options to :py:func:`pingouin.plot_rm_corr`, which now takes optional keyword arguments to pass through to :py:func:`seaborn.regplot` and :py:func:`seaborn.scatterplot`. `PR 312 <https://github.com/raphaelvallat/pingouin/pull/312>`_.
31
+
- Changed some plotting functions to increase compatibility with :py:class:`seaborn.FacetGrid`. As explained in `issue 306 <https://github.com/raphaelvallat/pingouin/issues/306>`_, the major change is to generate :py:class:`matplotlib.axes` using default parameters instead of accepting ``fig`` and ``dpi`` keyword arguments. This change applies to :py:func:`pingouin.plot_blandaltman`, :py:func:`pingouin.plot_paired`, :py:func:`pingouin.plot_circmean`, and :py:func:`pingouin.qqplot`. In the future, open a :py:class:`matplotlib.axes` and pass it through using the ``ax`` parameter to use custom figure settings with these functions. Other minor changes include the addition of the ``square`` keyword argument to :py:func`pingouin.plot_circmean` and :py:func`pingouin.qqplot` to ensure equal aspect ratios, and the removal of ``scatter_kws`` as a keyword argument in :py:func:`pingouin.plot_blandaltmann` (now alter the scatter parameters using general ``**kwargs``). `PR 314 <https://github.com/raphaelvallat/pingouin/pull/314>`_.
0 commit comments