I am trying to figure out how to turn date time from a csv into the day of week equivelant, i have a column in a CSV with date format as listed below (Y.M.D) and i want to turn that into mon, tue, wed, thur, fri, sat, sun, instead. I have data corresponding to each date, I need a variable for each day of the 7 day week for an ML model. (Im trying to see if theres a correlation between my dependant variables and the specific day of the week)
I want to turn this
Day
2019.12.24
2019.12.26
2019.12.27
2019.12.28
2019.12.29
2019.12.30
2019.12.31
into this
Day
'Wednesday'
'Thursday'
'Friday'
'Saturday'
'Sunday'
'Monday'
'Tuesday'
The data is In a CSV in google sheets if anyone knows how to do it in there (google sheets) that would be ideal, or in Python that would be good as well, any help is much appreciated.