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.
可能重复: 无法读取带有“#”的文件和使用 R 中的 read.table 或 read.csv 的空间
R 的问题是,当我用 R 读入(使用read.table函数)分隔文件(例如制表符分隔的文本文件)时,包含#或'字符的行会被静默删除。应该如何读入文件以便不删除包含这些字符的行?
read.table
#
'
默认comment.char为#字符。您可以使用comment.char参数更改它,即
comment.char
read.table(file, comment.char="@") read.table(file, comment.char="##")