0

我是使用 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
4

1 回答 1

1

尝试

library(xlsx)

read.xlsx("/path/exam.xls",1)
于 2013-04-10T12:00:18.427 回答