我将数据集的zip文件保存到Rstudio项目中。我想解压缩文件。我从this获得了zip文件。然后,我将它保存在我的Rstudio项目中。 我试过这段代码:
filetemp <- "appendicitis.zip" ## just assign a name to a zip.file
appendDat <- read.table(unz( filetemp,"appendicitis.zip")) ## to unzip and read the data.
我收到了这个错误“
Error in open.connection(file, "rt") : cannot open the connection
In addition: Warning message:
In open.connection(file, "rt") :
cannot locate file 'appendicitis.zip' in zip file 'appendicitis.zip'
Called from: open.connection(file, "rt")
有什么帮助吗?
答案 0 :(得分:0)
似乎没有使用appendicitis.zip
中的正确文件。
appendDat <- read.table(unz( filetemp,"appendicitis.zip"))
请将appendicitis.zip
名称更改为zip下文件的实际名称。假设zip
中的实际文件是abc.dat
。以下内容应该是
appendDat <- read.table(unz( filetemp,"abc.dat"))