Rstudioプロジェクトにデータセットのzipファイルを保存しました。私はファイルを解凍しようとしています。私はthisからzipファイルを入手しました。その後、Rstudioプロジェクトに保存しました。 私はこのコードを試してみました:?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")
に任意のヘルプをしてください
zipファイルにはいくつのファイルがありますか? zipファイルの下にサブフォルダがないことを確認してください。 – MKR
サブフォルダはありません。ただ1つのデータファイルです – SilverKing
2つの引数をスワップします: 'read.table(" appendicitis.zip "、filetoextract))'。 (マニュアルページは 'description'を使用してzipファイルになり、' filename'は抽出したいファイルになります...おそらく少し混乱します。) – r2evans