Skip to content

Instantly share code, notes, and snippets.

@m-note
Last active October 29, 2015 16:29
Show Gist options
  • Save m-note/9bdb404edb2f63497876 to your computer and use it in GitHub Desktop.
Save m-note/9bdb404edb2f63497876 to your computer and use it in GitHub Desktop.
results_df = pd.DataFrame()
results_df = results_df.append(pd.DataFrame({
"ID": [user for i in range(len(tweet_list))],
"Date": [date.strftime('%Y-%m-%d') for i in range(len(tweet_list))],
"Time": tweet_time_list,
"Tweet": tweet_list,
"Type": tweet_type_list},
columns = ['ID', 'Date', 'Time', 'Tweet', 'Type']))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment