Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import pandas as pd
- position = pd.read_csv('/datasets/position.csv')
- position['timestamp'] = pd.to_datetime(position['timestamp'], format='%Y.%m.%dT%H:%M:%S')#переведем данные из строкового типа в datetime64 в столбце 'timestamp'
- print(position.head())
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement