This is the example of my dataset.
>>> user1 = pd.read_csv(\'dataset/1.csv\') >>> print(user1) 0 0.69464 3.1735 7.5048 0 0.0306
I'd do it like this:
colnames=['TIME', 'X', 'Y', 'Z'] user1 = pd.read_csv('dataset/1.csv', names=colnames, header=None)