我使用微软应用程序(来自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
答案 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}}