Bar plot not grouped when setting y
Open
- Dominant language
- Python
- Stars
- 1.4k
- Forks
- 124
- Avg merge
- 1d 18h
- Merged PRs (30d)
- 1
Description
The two plots should be identical as the dataframe only contains the `"mean"` column.
```python
import hvplot.pandas # noqa
df = hvplot.sampledata.penguins("pandas")
df = df.groupby(["island", "sex"]).agg({"bill_length_mm": ["mean"]})
df.columns = df.columns.droplevel(0)
df.hvplot.bar() + df.hvplot.bar(y="mean")
```
Contributor guide
Assessment
This issue has not been assessed yet.