Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created April 9, 2021 08:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amankharwal/2386994aa0004b33b0aae9265c0b408b to your computer and use it in GitHub Desktop.
Save amankharwal/2386994aa0004b33b0aae9265c0b408b to your computer and use it in GitHub Desktop.
df = pd.DataFrame(data, columns=["Date", 'Time', 'Author', 'Message'])
df['Date'] = pd.to_datetime(df['Date'])
print(df.tail(20))
print(df.info())
print(df.Author.unique())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment