holoviz / holoviz/hvplot

Support y2 selection for area plot in explorer

Open
#912 0 comments 0 reactions 0 assignees View on GitHub
api: explorer
Dominant language
Python
Stars
1.4k
Forks
124
Avg merge
1d 18h
Merged PRs (30d)
1

Description

I would like to explore the `area` plot, to learn about its parameters.

```python
import pandas as pd
import hvplot.pandas

df = pd.DataFrame(
{
"actual": [100, 150, 125, 140, 145, 135, 123],
"forecast": [90, 160, 125, 150, 141, 141, 120],
"numerical": [1.1, 1.9, 3.2, 3.8, 4.3, 5.0, 5.5],
"date": pd.date_range("2022-01-03", "2022-01-09"),
"string": ["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"],
},
)
hvplot.explorer(df)
```

![image](https://user-images.githubusercontent.com/42288570/190919182-065b7e31-3bdc-4114-8a17-f3869ab8baa9.png)

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.