Skip to content

Instantly share code, notes, and snippets.

@roboreport
Created August 13, 2019 07:56
Embed
What would you like to do?
for s in range(1, 13):
train_sc_df['shift_{}'.format(s)] = train_sc_df['trade_price_idx_value'].shift(s)
test_sc_df['shift_{}'.format(s)] = test_sc_df['trade_price_idx_value'].shift(s)
train_sc_df.head(13)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment