JanHomann

Results 42 comments of JanHomann

Here are my package versions: ``` hvplot : 0.8.0 pandas : 1.4.3 holoviews : 1.14.9 bokeh : 2.4.3 Python version : 3.9.13 IPython version : 8.4.0 jupyter notebook : 6.4.12...

Yes, I suppose the mechanism by which this works in Pandas is that a slice object is passed to the dataframe method. Makes sense. Is there currently a workaround for...

Here is somewhat of a workaround. Unfortunately that only works when you start out with a dataframe, not with an interactive dataframe. So essentially if you know that you need...

Wow, you guys are amazing. A solution in less than 24 hours?!

> Nice! @JanHomann , a really valuable contribution you (or other users) could make is to study the Pandas API and see if there are any other collections or special...

Here is another problem. The `.query()` method isn't working . This function can be replicated by boolean indexing, but it's more concise and fast. ```python import hvplot.pandas import panel.widgets as...

Overall I totally love the holoviz stack. I think it's currently the most advanced and most user friendly stack for interactive plotting in python.

Today I found some more cases where `.interactive` fails. The first case is lambda functions (and probably also normal functions) that some Pandas methods accept as arguments. ```python import numpy...

The second case is range objects, which can also be passed to some Pandas methods. ```python import numpy as np import pandas as pd import hvplot.pandas import panel.widgets as pnw...