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 febd316 commit ed8cb10
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tests/bugs/issue_82/issue_82_long_cycles.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
for cyc in lValues:
print("TEST_CYCLES_START", cyc)
b1 = tsds.generate_random_TS(N = 3200 , FREQ = 'H', seed = 0, trendtype = "constant", cycle_length = cyc, transform = "None", sigma = 0.1, exog_count = 0, ar_order=0);
df = b1.mPastData
df = b1.mPastData.copy()
df[b1.mSignalVar] = df[b1.mName]

# df.tail(10)
Expand Down
2 changes: 1 addition & 1 deletion tests/bugs/test_random_exogenous.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# warnings.simplefilter("error")

b1 = tsds.generate_random_TS(N = 160 , FREQ = 'D', seed = 0, trendtype = "constant", cycle_length = 12, transform = "None", sigma = 0.10, exog_count = 1280);
df = b1.mPastData
df = b1.mPastData.copy()
df[b1.mSignalVar] = df[b1.mName]

df.info()
Expand Down
2 changes: 1 addition & 1 deletion tests/func/test_const_signal.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.0, ar_order = 0);
df = b1.mPastData
df = b1.mPastData.copy()

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

Expand Down
2 changes: 1 addition & 1 deletion tests/func/test_cycles_full.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
for cyc in lValues:
print("TEST_CYCLES_START", cyc)
b1 = tsds.generate_random_TS(N = 320 , FREQ = 'D', seed = 0, trendtype = "constant", cycle_length = cyc, transform = "None", sigma = 0.1, exog_count = 0);
df = b1.mPastData
df = b1.mPastData.copy()

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

Expand Down

0 comments on commit ed8cb10

Please sign in to comment.