Plotting a long time series
Open
- Dominant language
- Jupyter Notebook
- Stars
- 2.9k
- Forks
- 383
- PR merge metrics
- No merged PRs in 30d
Description
I am running your docker container and Python.
I construct the following time series and empty plot:
```
import pandas as pd
index = pd.date_range(start="1900-01-01", end="2000-01-01")
x = pd.Series(index=index, data=1.0)
p = TimePlot(xlabel="Time", ylabel="Value")
```
If I do p.add(Line(x)) I somewhat see the first few years of the data. If I do p.add(Area(x)) the system won't display anything...
I assume it's my job to resample the series and make it shorter?
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.