我有一個非常大的zip文件,我試圖把它讀成R沒有解壓它像這樣:R正在讀取一個壓縮數據文件,而無需解壓就
temp <- tempfile("Sales", fileext=c("zip"))
data <- read.table(unz(temp, "Sales.dat"), nrows=10, header=T, quote="\"", sep=",")
Error in open.connection(file, "rt") : cannot open the connection
In addition: Warning message:
In open.connection(file, "rt") :
cannot open zip file 'C:\Users\xxx\AppData\Local\Temp\RtmpyAM9jH\Sales13041760345azip'
這篇文章可以幫助你:http://stackoverflow.com/questions/3053833/using-r-to-download-zipped-data-file-extract-and-import-data – Sam
是的,我做了我盡職調查和搜查之前,我問這個問題,稍微不同的是,我想從我的本地文件系統讀取,而不是通過一個URL。 – laiboonh
你曾經解決過這個問題嗎? –