Skip to content

Instantly share code, notes, and snippets.

@bkaankuguoglu
Created March 29, 2021 22:37
Show Gist options
  • Select an option

  • Save bkaankuguoglu/29729d967881ffc1fe3cd39d2b4903a8 to your computer and use it in GitHub Desktop.

Select an option

Save bkaankuguoglu/29729d967881ffc1fe3cd39d2b4903a8 to your computer and use it in GitHub Desktop.
df_features = (
df
.assign(hour = df.index.hour)
.assign(day = df.index.day)
.assign(month = df.index.month)
.assign(day_of_week = df.index.dayofweek)
.assign(week_of_year = df.index.week)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment