Philipp Rudiger
Philipp Rudiger
```python class Counter(pn.reactive.ReactiveHTML): _esm = """ export function render({ model, el }) { let button = document.createElement("button"); button.classList.add("counter-button"); button.innerHTML = `count is ${model.count}`; button.addEventListener("click", () => { model.count += 1...
About 10 years late, but better than never. ```python hv.Bars(range(1, 10)) ```  ```python df.time.dt.date.value_counts().sort_index().iloc[:30].hvplot.bar(title='Daily Earthquakes') ``` 
Attempt at fixing https://github.com/holoviz/holoviews/issues/6118
The Pandas support in HoloViews has always been severely hampered by the fact that we do not properly support indexes, i.e. if a user references an index column we are...
When you depend on a DataFrame value inside a DynamicMap callback via a stream the hashing that occurs is simply way too slow to be practical, often taking 0.5 -...
Currently when plotting using bokeh the axes are unbounded letting you zoom and pan to potentially empty parts of the data space. Since bokeh 0.11 it has been possible to...
The idea of a HoloViews cheat sheet has cropped up on a number of occasions but we haven't raised it as an official issues. I think it's a great idea,...
Should consider whether to move the geopandas interface from geoviews to holoviews, but here's it working: ```python import geopandas as gpd import geoviews import holoviews as hv from geodatasets import...
Attempt at setting up GPU tests on a self-hosted runner.
The `Comparator` in Param is used to check if a Parameter value has changed and therefore needs to trigger all watchers to inform them of this change. The `Comparator` was...