我正在尝试使用 R 包xlsx
加载此 URL 上可用的文件:
http ://www.plosgenetics.org/article/fetchSingleRepresentation.action?uri=info:doi/10.1371/journal.pgen.1002236.s019
library(xlsx)
filename="/home/avilella/00x/mobile.element.insertions.1000g.journal.pgen.1002236.s019.xlsx"
system(paste("ls -l",filename))
-rw-rw-r-- 1 avilella avilella 2372143 2011-12-11 16:36 /home/avilella/00x/mobile.element.insertions.1000g.journal.pgen.1002236.s019.xlsx
下载后,我尝试使用read.xlsx
或将其加载到 R 中read.xlsx2
:
file <- system.file("mobile.element.insertions.1000g", filename, package = "xlsx")
res <- read.xlsx2(file, 1) # read first sheet
但我收到一个错误:
错误
.jnew("java/io/FileInputStream", file)
:java.io.FileNotFoundException:(没有这样的文件或目录)
有任何想法吗?