安装Rstudio:
1.首先安装Anaconda
2打开下图的标识
会呈现出:
选择Rstudio,点击install即可安装。
R的基本操作
> getwd() #查看当前工作目录
> setwd(dir="C:\Users\abc\Desktop\Rdata") #设置当前工作路径,注意路径中由于转义字符,路径中使用 \
> x <- 1 +2 # <- 表示赋值
1.首先安装Anaconda
2打开下图的标识
会呈现出:
> getwd() #查看当前工作目录
> setwd(dir="C:\Users\abc\Desktop\Rdata") #设置当前工作路径,注意路径中由于转义字符,路径中使用 \
> x <- 1 +2 # <- 表示赋值