Skip to content

Commit

Permalink
Warning hunt
Browse files Browse the repository at this point in the history
  • Loading branch information
antoinecarme committed Jun 16, 2024
1 parent 0687bd4 commit ed3e5a9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/func/test_ar.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#get_ipython().magic('matplotlib inline')

b1 = tsds.generate_random_TS(N = 320 , FREQ = 'D', seed = 0, trendtype = "constant", cycle_length = 0, transform = "None", sigma = 0.1, ar_order = 12);
df = b1.mPastData
df = b1.mPastData.copy()

df['Signal'] = df[b1.mName]

Expand Down
2 changes: 1 addition & 1 deletion tests/func/test_cycle.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#get_ipython().magic('matplotlib inline')

b1 = tsds.generate_random_TS(N = 320 , FREQ = 'D', seed = 0, trendtype = "constant", cycle_length = 12, transform = "None", sigma = 0.0);
df = b1.mPastData
df = b1.mPastData.copy()

df['Signal'] = df[b1.mName]

Expand Down

0 comments on commit ed3e5a9

Please sign in to comment.