I noticed only seven(7) variable definitions in the training dataset even though eight(8) are specified on the comp. page. Perhaps it's a spoof?
The training dataset is very neat, crisp, and clean. Thank you to the organizers, much appreciated.
To get day of the week (the missing feature) you can use:
df['dayofweek'] = df['eventdatetime'].dt.day_name()
Thank you Amy
To get day of the week (the missing feature) you can use:
df['dayofweek'] = df['eventdatetime'].dt.day_name()Thank you Amy