Maxime Liquet
Maxime Liquet
@cdeciampa I'd be great if you could provide a minimal example for us to reproduce that bug (uploading an example input file if required?).
It seems to me that it does display the index. I'm closing this issue then, don't hesitate to comment it or open a new issue if you think the problem...
I had a look at this issue. On the heatmap: * I think the issue reported originally by @TylerTCF is that HoloViews considers the x-axis - *Year* - as a...
This issue actually lists a few different issues. First, yes `bar` plots do not support numerical data. @philippjfr wrote on Discourse: > So this is an unfortunate quirk of the...
Pinging @jlstevens to get your opinion on that: > Something I'm unsure about is that using this approach the bins are centered around the x values, while in some cases...
I agree hvPlot should support that. I assume it doesn't make sense to add support to that to HoloViews that provides more 'atomic' elements compared to hvPlot. I suggest adding...
@MridulS sorry for taking so long to come back to your PR! Unfortunately it seems that there's a problem. As is the examples tests hang on windows and the workflows...
> And (in my opinion) the existing theme has not been attractive for a decade. I assume you're talking about Bokeh since hvPlot is only a few years old. Did...
It seems to be that `check_library` could be replaced by: ```python def check_module(data, module): if module =='dask' and module in sys.modules: import dask.dataframe as dd return isinstance(data, (dd.Series, dd.DataFrame)) elif...