Philipp Rudiger

Results 149 issues of 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)) ``` ![bokeh_plot - 2024-03-07T004024 188](https://github.com/holoviz/holoviews/assets/1550771/d76a089e-b260-42ed-8eb1-35168e9a5801) ```python df.time.dt.date.value_counts().sort_index().iloc[:30].hvplot.bar(title='Daily Earthquakes') ``` ![bokeh_plot - 2024-03-07T004230 940](https://github.com/holoviz/holoviews/assets/1550771/8a45bd74-dbc8-4e22-b094-3b3afa5c4e5d)

Attempt at fixing https://github.com/holoviz/holoviews/issues/6118

tag: component: data
type: enhancement

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...

type: enhancement

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 -...

type: enhancement

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...

tag: API
tag: backend: bokeh
tag: component: plotting

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,...

type: docs

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...

type: enhancement

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...

type-feature
good first issue