Maxime Liquet
Maxime Liquet
My use case is that I was trying to see how I'd allow users to download very large non-static files (e.g. streamed from elsewhere) to users of my app. I...
The Tabulator widget has a few attributes and events that refer to particular rows of the dataframe: - `selection`: parameter list value updated when the selection changes - `ClickEvent`: event...
Anchor links to elements within the served page don't work. I'm demonstrating this with this Markdown example but have also been able to reproduce it with HTML code served in...
Applying the `datashade` operation with a `count_cat` aggregator can update in place the dtype of the input DataFrame category column, in the example below from `object` to `category`. ```python import...
The code below: - Creates a DataFrame that holds categorical paths data. The paths are separated with NaN values for x and y but empty strings for the categorical column....
**Describe the issue**: [Panel](https://github.com/holoviz/panel) is a Python dashboarding framework that builds on and extends Bokeh. We have observed (https://github.com/holoviz/panel/issues/2302) that importing `distributed` in a Panel application affects the logs emitted...
The Tabulator widget offers the `configuration` parameter to further customize the component by forwarding options directly to Tabulator JS. This is a great way to use Tabulator JS options not...
Let's see!
It looks like it's a Geo/HoloViews bug. First report in https://github.com/holoviz/hvplot/issues/1202. ```python import geoviews as gv gv.extension('bokeh') data = {"x": [10, None], "y": [10, None], "color": [1, 2]} gv.Points(data, ["x",...