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 <[email protected]>
  • Loading branch information
badge and badge authored Sep 11, 2020
1 parent d7cc655 commit 211cabb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion seaborn/distributions.py
Original file line number Diff line number Diff line change
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 211cabb

Please sign in to comment.