Uinsg rhdfs 可以从 R 中的 HDFS 读取文件。但是,我在 HDFS 上的文件是 gzip 压缩的。如何将 HDFS 上 gzip 文件的纯文本内容读入 R?
到目前为止我尝试过的事情:
gzcon(hdfs.file(path))
->Error in gzcon(...) : 'con' is not a connection
memDecompress(hdfs.read(hdfs.file(path)), type="g")
->Error in memDecompress(..., type = "g") : internal error -3 in memDecompress(2)
也试过memDecompress
了type="u"
。