Advertisement
lamiastella

Untitled

Jan 24th, 2018
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.19 KB | None | 0 0
  1. import pandas as pd
  2. import matplotlib.pyplot as plt
  3.  
  4. df = pd.read_csv('converted_timezone_tweets.csv')
  5. mask = pd.isnull(pd.to_datetime(df['Time'], errors='coerce'))
  6. print(df.loc[mask, 'Time'])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement