JSKenyon

Results 46 comments of JSKenyon

This would also help me a great deal - I have also resorted to writing my own custom `Blocker` class which allows me to write many-to-many `blockwise` operations. This relies...

The cause of this behaviour seems to stem from plotting an empty Points/Scatter object. ```python import holoviews as hv from holoviews.operation.datashader import datashade plot = datashade(hv.Scatter([])).opts(width=800, height=800) plot ``` This...

As my final input before the weekend, this seems to be related to how datashader handles the colourmap. It seems that datashader will make the entire plot area the colour...

Having run into the same problem, I can confirm that @esc's suggestion involving `LD_LIBRARY_PATH` works. I did: ``` export LD_LIBRARY_PATH=/path/to/venv/lib ```

I think that in this case it is to ensure that the chunking on the datasets matches that of the frequency axis of the actual data. So the `__row__` entry...