Skip to content

Commit 81b8351

Browse files
committed
fix: test mutability
1 parent 3ad5a32 commit 81b8351

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

‎tsfeatures/tests/test_mutability.py‎

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ def test_mutability():
1313
z = np.zeros(100)
1414
z[-1] = 1
1515
z_df = pd.DataFrame({'unique_id': 1, 'ds': range(1, 101), 'y': z})
16-
print(z_df)
1716
feats=[sparsity, acf_features, arch_stat, crossing_points,
1817
entropy, flat_spots, holt_parameters,
1918
lumpiness, nonlinearity, pacf_features, stl_features,
@@ -25,10 +24,7 @@ def test_mutability():
2524
stability, hw_parameters, unitroot_kpss, unitroot_pp,
2625
series_length, hurst, sparsity]
2726
feats_df = tsfeatures(z_df, freq=7, features=feats, scale=False)
28-
print(feats_df.T)
29-
print(z_df)
3027
feats_2_df = tsfeatures(z_df, freq=7, features=feats_2, scale=False)
31-
print(feats_2_df.T)
3228
pd.testing.assert_frame_equal(feats_df, feats_2_df[feats_df.columns])
3329

3430
if __name__=="__main__":

0 commit comments

Comments
 (0)