提问人:Bouraoui Hamadou 提问时间:6/13/2022 更新时间:6/13/2022 访问量:62
R csv 文件必须拆分为 3 个数据帧
R csv file must be splitted in 3 data frames
答:
0赞
bpvalderrama
6/13/2022
#1
您可以使用具有 and 参数的函数。你可以跳过任意数量的行,你可以说出你想读入 R 的行数。然后,您可以将该函数与这些参数一起使用两次,以便读取所需的部分。read.table()
skip
nrows
skip
nrows
所以你可以用这样的东西:
first_table <- read.table(file = "your_file.csv", nrows = 5, sep = ",")
second_table <- read.table(file = "your_file.csv", skip = 7, sep = ",")
评论