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
This is more inline with what seaborn and other libraries do:
Besides this, I've had issues with passing different iterables into the palette and cat kwargs above. I had to cast them to list for it to work. Extracting the keys and values from the dictionary (palette.keys() and palette.values()) gave me the following errors after passed them in:
IMO most iterables should work as arguments here (excluding str type)
The text was updated successfully, but these errors were encountered:
Sometimes its important to associate a palette with specific values. This can be done with
color_category_style
but it feels laborious:It'd be really nice if we could directly pass in
palette
to thepalette
argument like so:This is more inline with what seaborn and other libraries do:
Besides this, I've had issues with passing different iterables into the
palette
andcat
kwargs above. I had to cast them tolist
for it to work. Extracting the keys and values from the dictionary (palette.keys()
andpalette.values()
) gave me the following errors after passed them in:IMO most iterables should work as arguments here (excluding
str
type)The text was updated successfully, but these errors were encountered: