Skip to content

Instantly share code, notes, and snippets.

@malcolmbarrett
Created January 27, 2019 18:45
Show Gist options
  • Save malcolmbarrett/b06aa388dc64b8c0cf0a745bd5d6de9f to your computer and use it in GitHub Desktop.
Save malcolmbarrett/b06aa388dc64b8c0cf0a745bd5d6de9f to your computer and use it in GitHub Desktop.
library(dplyr)
library(rtweet)
abi_likes <- rtweet::get_favorites("GoAbiAryan", token = your_token)
abi_likes %>%
dplyr::sample_n(10) %>%
dplyr::pull(text)
abi_likes %>%
dplyr::select(user_id, status_id, created_at, screen_name, text) %>%
readr::write_excel_csv("abi_likes.csv")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment