VP Data Science and Machine Learning - Intellicheck
M.S. in Predictive Analytics - DePaul University
Me
Malter Analytics
GitHub
LinkedIn
YouTube Channel
Kaggle
Other Work
Into to Python Course
General Assembly
AriBall
Media
Built In
Step 1: Log into Amazon AWS
Step 2: Click the EC2 icon - Virtual Servers in the Cloud

Step 3: Launch an Instance
#!/bin/bash
#install R
yum install -y R
#install RStudio-Server
wget https://download2.rstudio.org/rstudio-server-rhel-0.99.465-x86_64.rpm
yum install -y --nogpgcheck rstudio-server-rhel-0.99.465-x86_64.rpm
#install shiny and shiny-server
R -e "install.packages('shiny', repos='http://cran.rstudio.com/')"
wget https://download3.rstudio.org/centos5.9/x86_64/shiny-server-1.4.0.718-rh5-x86_64.rpm
yum install -y --nogpgcheck shiny-server-1.4.0.718-rh5-x86_64.rpm
#add user(s)
useradd username
echo username:password | chpasswd
NOTE: Change username and password based on your requirements.

Step 4: Open RStudio Server