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
Describe the bug
Changing n_points from 10000 to 10001 and greater values gives the error: KeyError: 'feature' which is very annoying because I work with very large single cell datasets.
My assessment:
looking at this source code
if method is None:
method = "datashader" if len(points) > 10000 else "matplotlib"
it seems that the problem is due to using the datashader backend?
The text was updated successfully, but these errors were encountered:
ziyuanzhao2000
changed the title
render_points with column coloring throws error when there are too many pointsrender_points with column coloring throws error when there are too many points
Mar 21, 2025
Recommendation: attach a minimal working example
Minimal working example with a toy dataset:
Describe the bug
Changing
n_points
from 10000 to 10001 and greater values gives the error:KeyError: 'feature'
which is very annoying because I work with very large single cell datasets.My assessment:
looking at this source code
it seems that the problem is due to using the datashader backend?
The text was updated successfully, but these errors were encountered: