Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

markers kw arg to does not work together with hue_order #472

Closed
ahjulstad opened this issue Mar 17, 2015 · 2 comments · Fixed by #547
Closed

markers kw arg to does not work together with hue_order #472

ahjulstad opened this issue Mar 17, 2015 · 2 comments · Fixed by #547
Labels

Comments

@ahjulstad
Copy link

The pairplot function does not arrange markers according to hue_order

sns.pairplot(vars=['R','T','W',], 
             hue="Category", 
             hue_order=["Uncategorised", "C", "F", "S"],
             markers=['.','o','o','o'],
             data=d)

gives the small dots to the C category. (I wanted the small dots for the uncategorised data.)

This is with current 0.6dev ( 9a1db37 )

@mwaskom
Copy link
Owner

mwaskom commented Mar 19, 2015

I think actually the problem here is that hue_order doesn't work properly.

@mwaskom mwaskom added the bug label Mar 19, 2015
mwaskom added a commit that referenced this issue May 9, 2015
This fixes #472.

This also changes the default `hue_order` to use the same `category_order`
rules as elsewhere in seaborn (cf #361).
@mwaskom
Copy link
Owner

mwaskom commented May 9, 2015

Sorry about the delay; thanks for reporting this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants