-
Notifications
You must be signed in to change notification settings - Fork 0
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
HoloViews dotplot and umap elements #17
base: main
Are you sure you want to change the base?
Conversation
Yea, honestly, I don't know what's going on with the coloring. I'm not sure this particular plot is improved with rasterization.. it is suboptimal to have to play with spreading. |
If that coloring difference isn't deliberate, it seems like a bug that should be addressed. I'd be happy to have hvplot respect the size argument (translating it to a spread value) so that people wouldn't have to play around with spreading. |
fixed the coloring issue.. it wasn't using the first two colors of the cmap for the two categories so I just limit the cmap to the first two colors and that resolves it. |
That sounds like a workaround, with a bug that still needs fixing. What it sounds like is that it is treating the list of colors as a colormap (which is sampled at equal intervals due to its continuous nature) rather than as a color key or color cycle (which are taken in order due to their discrete nature). Definitely should not be confusing those usages! So unless I'm confused, you shouldn't be using cmap, you should be using a color key or color cycle. |
HoloViz-ifying the scanpy clustering tutorial and making:
WIP POC:
UPDATE: