0

希望标题有意义。

本质上,一个文件中有两个数据集。

第 1 行包含数据集 1 的标题,按 loc 排列。然后第 2-1500 行是这些位置的条目。

第 1501 行是 dataset2 的标题,按 loc 排列。然后第 1502-3001 行是这些位置的条目。

如何读取具有这些属性的固定文件,为每个数据集提供标题间距(以及 dataset2 开始的点)。

4

1 回答 1

1

这里有两种方法:

使用skipandnrows参数:

first <- read.table("file", header = T, nrows = 1500)
second <- read.table("file", header = T, skip=1501, nrows = 1500)

读入整个文件然后将其拆分:

allLines <- read.table("file", header = T)
first <- allLines[1:1500, ]
second <- allLines[1502:3002, ]
names(second) <- allLines[1501, ] ## or colnames if working with a matrix
于 2018-02-25T17:23:21.430 回答