https://github.com/gesiscss/smm_demo
Examples to complement of the SMM Monitor
https://github.com/gesiscss/smm_demo
binder-ready facebook python r social-media twitter wikipedia
Last synced: 3 months ago
JSON representation
Examples to complement of the SMM Monitor
- Host: GitHub
- URL: https://github.com/gesiscss/smm_demo
- Owner: gesiscss
- License: mit
- Created: 2019-05-21T08:03:53.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2021-05-11T12:48:51.000Z (about 5 years ago)
- Last Synced: 2025-01-03T18:47:12.308Z (over 1 year ago)
- Topics: binder-ready, facebook, python, r, social-media, twitter, wikipedia
- Language: Jupyter Notebook
- Size: 283 KB
- Stars: 1
- Watchers: 11
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://notebooks.gesis.org/binder/v2/gh/gesiscss/smm_demo/master)
# smm_demo
Examples to complement of the SMM Monitor
# Install R jupyter notebooks
1. Install R. Use an up to date resource like this: https://www.digitalocean.com/community/tutorials/how-to-install-r-on-ubuntu-18-04
2. Install libcurl library:
```
sudo apt install libcurl4-openssl-dev, libzmq3-dev
```
3. Open an R console
4. Install the following packages:
```
install.packages(c('rzmq','repr','IRkernel','IRdisplay'),
repos = c('http://irkernel.github.io/',
getOption('repos')),
type = 'source')
```
5. Install the kernel with
```
# user = FALSE will install it at a system level
IRkernel::installspec(user = TRUE)
```
6. Install other dependencies:
```
install.packages("httr")
install.packages("jsonlite")
install.packages("ggplot2")
install.packages('RJSplot')
install.packages('dplyr')
```
Source: http://www.storybench.org/install-r-jupyter-notebook/
Troubleshooting: https://github.com/ramnathv/rCharts/issues/718