Created
March 29, 2021 22:37
-
-
Save bkaankuguoglu/29729d967881ffc1fe3cd39d2b4903a8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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