我是R的新用户。我尝试处理.xls文件,数据有这种格式:
num day
1 2011-1-1 00:00:01
2 2011-1-2 00:00:02
3 2011-1-3 00:00:03
我尝试加载文件:
example <- read.xls(/path/exam.xls)
但它给了我但是这个错误
Error in findPerl(verbose = verbose) :
perl executable not found. Use perl= argument to specify the correct path.
Error in file.exists(tfn) : invalid 'file' argument
答案 0 :(得分:1)
尝试
library(xlsx)
read.xlsx("/path/exam.xls",1)