Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/apoorv74/iodc2018
twitter dashboard for IODC 2018
https://github.com/apoorv74/iodc2018
Last synced: 3 days ago
JSON representation
twitter dashboard for IODC 2018
- Host: GitHub
- URL: https://github.com/apoorv74/iodc2018
- Owner: apoorv74
- Created: 2018-09-27T14:25:21.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-10-02T09:03:23.000Z (about 6 years ago)
- Last Synced: 2023-10-20T17:20:17.149Z (about 1 year ago)
- Language: R
- Homepage: https://behindbars.shinyapps.io/iodc2018/
- Size: 4.45 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# `IODC 2018`
A quick fix for your [IODC](https://www.opendatacon.org/#/) FOMO.
Try it on [shinyapps.io](https://behindbars.shinyapps.io/iodc2018/)
To run this on your own, you need to create an OAuth twitter token for [`rtweet`](https://rtweet.info/).
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](https://rud.is/books/21-recipes/using-oauth-to-access-twitter-apis.html),
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:
```r
packages = c("shiny", "rtweet", "dplyr", "stringr",
"purrr", "httr", "DT", "shinythemes",
"glue", "simpleCache")
install.packages(packages)
```