Extended syntax support for R--and R runner--inside of Cloud9 IDE

18 Views Asked by At

I have installed R into AWS Cloud9 Via Bash with the following script:

mkdir R
cd R
wget http://cran.r-project.org/src/base/R-3/R-3.0.3.tar.gz
tar -xzf R-3.0.3.tar.gz
rm R-3.0.3.tar.gz
cd R-3.0.3
sudo apt-get update
sudo apt-get install r-base
someone:~/workspace/R-3.0.3 $ R

How would I go about building a runner that runs .R files, and how to get further syntax support, with things like a Language Server? I need at least a tutorial video for doing this, since I do not really understand how to set up something along the lines of this.

I have installed R, and that is about it.
I am just asking the community for something like a guide.

0

There are 0 best solutions below