Skip to content

Commit

Permalink
Pass col_order and row_order to FacetGrid in displot (#2262)
Browse files Browse the repository at this point in the history
Co-authored-by: badge <mbadger@hudsonenergy.co.uk>
(cherry picked from commit 211cabb)
  • Loading branch information
badge authored and mwaskom committed Sep 11, 2020
1 parent d1fb204 commit 2805dcb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion seaborn/distributions.py
Expand Up @@ -2180,7 +2180,9 @@ def displot(

g = FacetGrid(
data=data, row=row_name, col=col_name,
col_wrap=col_wrap, height=height, aspect=aspect,
col_wrap=col_wrap, row_order=row_order,
col_order=col_order, height=height,
aspect=aspect,
**facet_kws,
)

Expand Down

0 comments on commit 2805dcb

Please sign in to comment.