我試圖以運行在讀該命令運行功能的文件路徑不變:錯誤:意外的字符串作爲R
xlsxToR <- function("C:\\Users\\Nabila\\Dropbox\\IsolutionsProject\\ServiceRequestTickets.zip", keep_sheets = "TicketDetails", header = FALSE)
不過,我傾向於當我運行它來得到這個錯誤:
Error: unexpected string constant in "xlsxToR <- function("C:\\Users\\Nabila\\Dropbox\\IsolutionsProject\\ServiceRequestTickets.zip""
我試過在我的文件路徑中尋找錯誤。嘗試使用正斜槓,但無濟於事。任何人都可以幫忙嗎?
不知道你在這裏試圖達到什麼,但這個SO問題有關於在R中打開zip文件的信息:http://stackoverflow.com/questions/3053833/using-r-to-download-zipped-data-文件提取和導入數據 –
嘗試給字符串常量一個名稱,如'function(file =「C:\\ Users \\ Nabila \\ Dropbox \\ IsolutionsProject \\ ServiceRequestTickets.zip」,...) '。 – lukeA
可愛!謝謝,這工作! – NarT