什么是RStudio?
RStudio IDE是一个开源的我 ntegratedð才有发展Ënvironment的统计分析程序R. RStudio Server提供RStudio IDE的Web版本,它允许在VPS容易发展。 由于我们的VPS是按小时计费的,令人惊讶的是,转售一个24核实例,压缩一些数据,然后销毁VPS是很便宜的。
安装RStudio在VPS
首先,安装R,apparmor和gdebi。
sudo apt-get install r-base libapparmor1 gdebi-core
接下来,下载并安装适合您的架构的正确包。 在32位Ubuntu上,执行以下命令。
wget http://download2.rstudio.org/rstudio-server-0.97.336-i386.deb -O rstudio.deb
在64位Ubuntu上,执行以下命令。
wget http://download2.rstudio.org/rstudio-server-0.97.336-amd64.deb -O rstudio.deb
安装软件包。
sudo gdebi rstudio.deb
创建RStudio用户
不建议在RStudio中使用root帐户,而是为RStudio创建普通用户帐户。 该帐户可以命名为任何内容,并且帐户密码将是在Web界面中使用的帐户密码。
sudo adduser rstudio
RStudio将使用用户的主目录作为它的默认工作区。
使用R Studio
RStudio可以通过端口8787访问。任何具有密码的用户帐户都可以在RStudio中使用。
让我们来测试RStudio是由安装一个定量的融资方案正常工作CRAN的R包库。
运行以下命令里面RStudio安装quantmod 。
install.packages("quantmod")
接下来,让我们通过绘制苹果的股票价格来测试RStudio的图形功能。 该图形将出现在RStudio的右下面板中。
library('quantmod') dataR is a really powerful tool and there are hundreds of useful packages available from CRAN. You can learn the basics of R at Try R.
To learn how to install R packages from CRAN and GitHub and how to ensure that these packages are made available for all users on the same Droplet, check out How To Set Up R on Ubuntu 14.04.
R是一个非常强大的工具,有数百个有用的包从CRAN 。 您可以在学习R的基本尝试- [R 。
要了解如何从CRAN和GitHub上,以及如何安装的R程序包,以确保这些包在同一个Droplet可供所有用户,看看如何设立研发在Ubuntu 14.04 。