Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个由制表符分隔的 txt 格式的文件。我的问题是,如果可以跳转到特定行,但不使用 for 循环,例如,如果我想跳转到第二行,我已经这样做了:
fileName="table.txt" con=file(fileName,open="r") for (i in 1:2){ ctable<-readLines(con,n=1) }
但我不想使用 for 循环,我该怎么做?谢谢
在参数中使用read.table()并提供要跳过的行数skip。在?read.table控制台输入以获取有关您可以使用的其他参数和包装器的更多信息。
read.table()
skip
?read.table