We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The pairplot function does not arrange markers according to hue_order
pairplot
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 )
The text was updated successfully, but these errors were encountered:
I think actually the problem here is that hue_order doesn't work properly.
hue_order
Sorry, something went wrong.
Fix hue_order in PairGrid
b0a975e
This fixes #472. This also changes the default `hue_order` to use the same `category_order` rules as elsewhere in seaborn (cf #361).
Sorry about the delay; thanks for reporting this.
Successfully merging a pull request may close this issue.
The
pairplot
function does not arrange markers according to hue_ordergives the small dots to the C category. (I wanted the small dots for the uncategorised data.)
This is with current 0.6dev ( 9a1db37 )
The text was updated successfully, but these errors were encountered: