So i have this dataset in pandas, and i want to do a time series analysis on it. I used the pd.read_csv to import the dataset and named it 'df'. Then i checked the first 5 columns of the dataset with the df.head() function.
df.head()
Date ARTICLES Detail
0 2018-070-2 10:54:00 DUBIC MALT CASH
1 2018-070-2 10:54:00 ANGEL COTTON-BUD CASH
2 2018-070-2 10:54:00 RIBENA 1LITTER CASH
3 2018-07-02 10:54:00 BOTTLE WATER 75CL CASH
4 2018-07-02 10:54:00 LWAYS CLASSIC THICK LONG CASH
Now i want to split the Date column into 'Day' like 2018-07-02 and Time like 10:54:00 in pandas.
I've tried using the rsplit function but it's throwing errors.