Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个旧的 32 位片段
xl <- odbcConnectExcel("c:/myFile.xls") data <- sqlFetch(xl, "flowers$")
但现在我有 64 位机器,不能使用 odbcConnectExcel。我已经读过我应该使用 XLconnect,但是如何将 sqlFetch 与 XLconnect 一起使用?ie 如何重写第二行代码?
尝试这个
图书馆(XLConnect)
xl <- loadWorkbook("c:/myfile.xls")
data <- readWorksheet(xl,"flower") #假设工作表名称为“flower”
尝试 odbcConnectExcel2007 并确保您拥有的 MS Office、R 版本都是 64 位的。