I have one csv file and first and third column we have date format as 1219376117 like first four digits is days(xxxx), hours(yy), minutes(zz), second(ss) as xxxxyyzzss respectively. Everything is in one cell, so how can I separate it?
import numpy as np
import math
import pandas as pd
df = pd.read_csv ('SensorsAP_example.csv')
print (df)
## Splitting the data sets
#df = pd.DataFrame({"Time stamp":["unchange"],"time_tow":["Days, hours, minutes, seconds"]})