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
we can do it with a single line of code.
user1 = pd.read_csv('dataset/1.csv', names=['TIME', 'X', 'Y', 'Z'], header=None)