使用包含"#"的文本将表导入R人物

时间:2014-11-07 14:55:48

标签: r

我使用以下方法将表导入R:

mydata <- read.table("C:/textfile.txt", sep="\t", header=FALSE)

我的文本文件包含使用#字符的字段,#后面的所有内容都未导入。如何强制R包含此数据?

# Leg

Buyer

1

Call

Qty (MMBTU ) 1,000,000

2

Clearing # 123456789

Link to the text file

1 个答案:

答案 0 :(得分:3)

您必须使用参数comment.char = ""

mydata <- read.table("C:/textfile.txt", sep = "\t", header = FALSE, comment.char = "")

默认值为comment.char = "#",因此忽略#后的所有内容。