1. working directory:工作目录
> getwd()
> setwd("C:/data")
# 设定当前工作目录
2. 读取格式化的 table
> rt <- read.table("**.txt", header=TRUE) # 一般都有表头
> getwd()
> setwd("C:/data")
# 设定当前工作目录
> rt <- read.table("**.txt", header=TRUE) # 一般都有表头