Extract bz2 file in R

前端 未结 5 915
我在风中等你
我在风中等你 2020-12-04 21:39

I have bunch of .csv.bz2 files, which i have to download, extract, and read in R. I downloaded the file and want to extract it to current working directory, the

5条回答
  •  抹茶落季
    2020-12-04 22:22

    According to read.table description, one can read a compressed file directly.

    read.table("file.csv.bz2")
    

提交回复
热议问题