Fix: Add missing matplotlib installation in example code
#7
by
anon-repair-bot
- opened
README.md
CHANGED
|
@@ -53,6 +53,7 @@ pip install git+https://github.com/amazon-science/chronos-forecasting.git
|
|
| 53 |
A minimal example showing how to perform inference using Chronos models:
|
| 54 |
|
| 55 |
```python
|
|
|
|
| 56 |
import matplotlib.pyplot as plt
|
| 57 |
import numpy as np
|
| 58 |
import pandas as pd
|
|
|
|
| 53 |
A minimal example showing how to perform inference using Chronos models:
|
| 54 |
|
| 55 |
```python
|
| 56 |
+
# Requires: matplotlib
|
| 57 |
import matplotlib.pyplot as plt
|
| 58 |
import numpy as np
|
| 59 |
import pandas as pd
|