无法在 R 中读取带有 readtext 的 .txt 压缩文件
Unable to read a .txt zipped file with readtext in R
我有一个压缩文件,其中包含另一个包含多个文本文件的文件夹
结构如下:
C:\DS\SUPERvised\**excerise.7z**\Data Science excercie \**Articles**\
文章文件有大约 2000 个文本文件
我在 R 中尝试了以下命令,但出现错误
DATA_DIR <- system.file("extdata/", package = "readtext")
readtext(paste0(DATA_DIR, "/C:/DS/SUPERvised/**excerise.7z**/Data Science excercie /**Articles**/*"))
我想无论如何要解决它与多个 zip 文件混淆,这样我就可以读取文章文件夹中的文本文件而无需在本地解压缩它们
解压缩函数有一个名为 "list" 的参数(如果你问我这个名字不好命名),其默认值为 FALSE,但如果将其设置为 TRUE,则只会获得 zip 文件的内容:
unzip(zipfile, files = NULL, list = FALSE, #leaving off the rest of the named arguments
我有一个压缩文件,其中包含另一个包含多个文本文件的文件夹
结构如下:
C:\DS\SUPERvised\**excerise.7z**\Data Science excercie \**Articles**\
文章文件有大约 2000 个文本文件
我在 R 中尝试了以下命令,但出现错误
DATA_DIR <- system.file("extdata/", package = "readtext")
readtext(paste0(DATA_DIR, "/C:/DS/SUPERvised/**excerise.7z**/Data Science excercie /**Articles**/*"))
我想无论如何要解决它与多个 zip 文件混淆,这样我就可以读取文章文件夹中的文本文件而无需在本地解压缩它们
解压缩函数有一个名为 "list" 的参数(如果你问我这个名字不好命名),其默认值为 FALSE,但如果将其设置为 TRUE,则只会获得 zip 文件的内容:
unzip(zipfile, files = NULL, list = FALSE, #leaving off the rest of the named arguments