Skip to content

gadenbuie/rsconf_tweets

main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
www
 
 
 
 
 
 
 
 
 
 

rstudio::conf_tweets()

A quick fix for your rstudio::conf FOMO. Try it on shinyapps.io or run it yourself!

Run this on your own machine

UPDATE 2018-02-09: RStudio::conf 2018 is now over! This repo now includes the tweets I gathered during the conference, so you do not need to worry about authenticating with Twitter. You can run the app locally with a simple shiny::runGitHub("rsconf_tweets", "gadenbuie")

To run this on your own, you need to create an OAuth twitter token for rtweet. I followed Bob Rudis's (hrbrmstr) excellent guide from 21 Recipes for Mining Twitter with rtweet.

To have this app recognize your twitter PAT, you have a couple options:

  1. You can follow all of the steps in Using OAuth to Access Twitter APIs,

  2. You can save your twitter_token to rtweet.rds in the app directory

  3. You can code up another alternative by setting .TWITTER_PAT in a file called twitter_secrets.R.

(The first one is the best answer.)

Required packages

I used the following packages to make this, all of which can all be installed from CRAN:

packages = c("shiny", "rtweet", "dplyr", "stringr",
             "purrr", "httr", "DT", "shinythemes", 
             "glue", "simpleCache")
install.packages(packages)

How it works

I used a simple twitter search for anything tagged or related to rstudioconf. Ininitally I was just looking at anything tagged #rstudioconf, but I borrowed the search terms from Michael Kearney.

rstudioconf <- c("rstudioconf", "rstudio::conf",
  "rstudioconference", "rstudioconference18",
  "rstudioconference2018", "rstudio18",
  "rstudioconf18", "rstudioconf2018",
  "rstudio::conf18", "rstudio::conf2018")

The app is set to pull in new tweets if the app was last loaded more than 15 minutes ago. To get new tweets, just reload!

Check out init.r for more details.

Other rstudio::conf twitter fun

@kearneymw posted a script that collects tweets and makes awesome plots at https://github.com/mkearney/rstudioconf_tweets