Skip to content

Commit

Permalink
mention bug
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigosnader committed Oct 10, 2022
1 parent f0d9bfc commit 18ebf30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wavy/panel.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def create_panels(
frame = df.iloc[i - lookback : i]
xframes[
(i - lookback) * lookback : (i - lookback + 1) * lookback, :
] = frame.values
] = frame.values # BUG: Fail when df contains strings.
xindex[0][(i - lookback) * lookback : (i - lookback + 1) * lookback] = (
i - lookback
) * np.ones(lookback, dtype=int)
Expand Down

0 comments on commit 18ebf30

Please sign in to comment.