Examples to complement of the SMM Monitor
-
Install R. Use an up to date resource like this: https://www.digitalocean.com/community/tutorials/how-to-install-r-on-ubuntu-18-04
-
Install libcurl library:
sudo apt install libcurl4-openssl-dev, libzmq3-dev
-
Open an R console
-
Install the following packages:
install.packages(c('rzmq','repr','IRkernel','IRdisplay'),
repos = c('http://irkernel.github.io/',
getOption('repos')),
type = 'source')
- Install the kernel with
# user = FALSE will install it at a system level
IRkernel::installspec(user = TRUE)
- 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: ramnathv/rCharts#718