Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigosnader committed Oct 7, 2022
1 parent 30dc1bf commit 28c23af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ import pandas as pd
import wavy
from wavy import models

# Start with any time-series dataframe
# Start with any time-series dataframe:
df = pd.DataFrame({'price': np.random.randn(1000)}, index=range(1000))

# Create panels. Each panel is a frame collection.
Expand All @@ -61,7 +61,7 @@ print("Horizon:", y.num_timesteps)
# Set train-val-test split. Defaults to 0.7, 0.2 and 0.1, respectively.
wavy.set_training_split(x, y)

# Instantiate a model.
# Instantiate a model:
model = models.LinearRegression(x, y)
model.score()
```
Expand Down

0 comments on commit 28c23af

Please sign in to comment.