├── .gitignore ├── README.R ├── README.md ├── example_quote.json ├── example_quote2.json ├── quote_tweet_urls.txt ├── scream.Rproj ├── target_tweet.json ├── troubleshooting-tips-tweet-smaller.png ├── troubleshooting-tips-tweet.png ├── tweets.csv └── tweets.rds /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | .httr-oauth 5 | secrets.R 6 | -------------------------------------------------------------------------------- /README.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennybc/scream/HEAD/README.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennybc/scream/HEAD/README.md -------------------------------------------------------------------------------- /example_quote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennybc/scream/HEAD/example_quote.json -------------------------------------------------------------------------------- /example_quote2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennybc/scream/HEAD/example_quote2.json -------------------------------------------------------------------------------- /quote_tweet_urls.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennybc/scream/HEAD/quote_tweet_urls.txt -------------------------------------------------------------------------------- /scream.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennybc/scream/HEAD/scream.Rproj -------------------------------------------------------------------------------- /target_tweet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennybc/scream/HEAD/target_tweet.json -------------------------------------------------------------------------------- /troubleshooting-tips-tweet-smaller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennybc/scream/HEAD/troubleshooting-tips-tweet-smaller.png -------------------------------------------------------------------------------- /troubleshooting-tips-tweet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennybc/scream/HEAD/troubleshooting-tips-tweet.png -------------------------------------------------------------------------------- /tweets.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennybc/scream/HEAD/tweets.csv -------------------------------------------------------------------------------- /tweets.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennybc/scream/HEAD/tweets.rds --------------------------------------------------------------------------------