我试图将csv文件读入R,但是我总是收到相同的错误消息
Error: unexpected input in "read.csv(C:\"...
这是我的代码:
read.csv(C:\Users\hp\Documents\dataset_self_reports_of height., header = TRUE, sep = ",")
答案 0 :(得分:1)
这是因为file
参数应该是字符串。
您实际上有
C:\Users\hp\Documents\dataset_self_reports_of height
假设是
"C:/Users/hp/Documents/dataset_self_reports_of height"
在R \
中也需要以这种方式使用/
。
因此,您最有可能以这种方式使用它:
read.csv("C:/Users/hp/Documents/dataset_self_reports_of height", header = TRUE, sep = ",")
我建议您阅读一些R教程,以了解R的工作原理。