Maxime Liquet

Results 316 issues of Maxime Liquet

This was first requested in https://github.com/holoviz/hvplot/issues/483#issuecomment-784338535, HoloViews could add support to stacked histograms. Plotly supports that for instance: ![image](https://user-images.githubusercontent.com/35924738/195908850-f410820d-bef3-4c7f-93a7-532d26a8262c.png)

type: feature
tag: hvplot

Adding tools to an Overlay via `opts` has no effect. ```python import holoviews as hv hv.extension('bokeh') overlay = hv.Curve([-1, -2, -3]) * hv.Curve([1, 2, 3]) overlay.opts(tools=['zoom_in']) ``` To add tools...

type: bug

Reviewing the modernized Gerrymandering example, I noticed some issues with rasterizing a scatter plot. Some of them are hvPlot issues, but it looks like there's also one issue in HoloViews....

type: bug

### Checklist - [X] I added a descriptive title - [X] I searched open requests and couldn't find a duplicate ### What is the idea? `conda config` can be used...

type::feature
source::anaconda
good first issue
plugins::config
stale::recovered

There's code in the converter to support hierarchical columns in a Pandas DataFrame, however it's untested and I think support for this kind of structure broke at some point. https://github.com/holoviz/hvplot/blob/6c96c7e9abcd44380d2122e3d86827dedab32dea/hvplot/converter.py#L1221-L1229...

type: bug

Fixes https://github.com/holoviz/hvplot/issues/1361 Also: - Cleans up some imports in the test suite, since pandas and panel are direct dependencies of hvPlot their import doesn't need to be guarded - Update...

hvPlot automatically sorts `x` for Pandas when it's a datetime series, feature which can be disabled by setting `sort_date=False`. The code looks like it's trying to support multilevel indexes but...

type: bug

HoloViews 1.19 added more hover options to control their display and formatting which mean that in most cases you no longer need to create a Bokeh model. Some or all...

type: enhancement

By avoiding calling `redim` on each element of an `NdOverlay` which meant that every element had its own copy of the data.

Bokeh 3.4.0 allows to format as HTML the title if its Input Widgets (see https://github.com/bokeh/bokeh/pull/13497). This is a feature I've wanted a few times, in particular when building a form...

type: enhancement