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
import hvplot.pandas import datashader as ds import holoviews as hv import numpy as np hv.extension("bokeh") tst = pd.DataFrame({ "lon": np.random.randn(257), "lat": np.random.randn(257), "cat": np.random.randn(257).astype(str), }) tst.hvplot.paths("lon", "lat", datashade=True, aggregator=ds.count_cat("cat"))
Crashes with
WARNING:param.dynamic_operation: Callable raised "ValueError('Insufficient colors provided (256) for the categorical fields available (257)')". Invoked as dynamic_operation(height=300, scale=1.0, width=700, x_range=None, y_range=None)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Crashes with
The text was updated successfully, but these errors were encountered: