Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import pandas as pd
- support = pd.read_csv('/datasets/support_upd.csv')
- #print(support.info())
- support_log = support[['user_id', 'type_id','timestamp']]#создадим новую таблицу support_log из столбцов 'user_id', 'type_id','timestamp'
- print(support_log.head(10))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement