从excel在线获取数据(办公室365)

时间:2017-07-27 09:29:34

标签: r excel office365

我使用微软应用程序(来自http://portal.office.com)在在线Excel工作表上翻译和存储推文,现在我想用R读取它。

excel表单中的数据网址https://myagency-my.sharepoint.com/.../tweet.xlsx

我试过了:

library(readxl)
read_excel('//companySharepointSite/project/.../ExcelFilename.xlsx', Sheet1', skip=1)`

来自post。它给出了:

Error in sheets_fun(path) :    Evaluation error: zip file

1 个答案:

答案 0 :(得分:0)

我相信library(xlsx) library(httr) url <- 'https://myagency-my.sharepoint.com/.../tweet.xlsx' GET(url, write_disk("excel.xlsx", overwrite=TRUE)) frmData <- read.xlsx("excel.xlsx", sheetIndex=1, header=TRUE) 仅适用于本地文件。这可能会起到作用:

{{1}}