Is there any easy way to extract a data frame that has both timestamp and location in the same row?
1 of the columns in this dataframe:
event
2019-01-01 11:08:33.000 USA
2019-01-02 11:08:33.000 Mexico
2019-01-03 11:08:33.000 Canada
Any easy way to separate them into 2 columns e.g. time and location?
time,location
2019-01-01 11:08:33.000,USA
2019-01-02 11:08:33.000,Mexico
2019-01-03 11:08:33.000,Canada