Running RStudio
Last updated
Was this helpful?
Last updated
Was this helpful?
In all cases you need to start Sid
In the browser go to
Launch Sid
Click Run An Interactive Application
Select RStudio
Select Version
Click Google drive (login if necessary)
Select CPU/RAM
Click Launch Application
Wait until URL is visible. The status will change from Initializing
to Running
Click on the URL
You can now create a RStudio Project.
Your RStudio home directory is on ephemeral storage. This means that when the container is deleted all the files will be lost. Store your files on Google Drive to save your work.
Upon launching RStudio, your Google drive will be accessible from the file browser pane, located in the lower, right-hand corner of the window.
Using R libraries in RStudio is easy. Run the library
command in the Console tab:
If a library is not available and get an error like this. In this case the `dslabs` library is missing:
Install the package from within your notebook with:
Some R libraries require additional system libraries. If the required system libraries are not installed, install.packages()
will report an error like this:
To install additional system libraries, use the R function system()
to run sudo apt-get update
and sudo apt-get install
to install the Debian packages:
If you are comfortable with programming external service calls, you can also use the service to automatically detect which system libraries are needed. ()