读取 gzip 文件

# 读取 file.txt.gz 的前 10 行
f <- read.table("file.txt.gz",nrow = 10, header = TRUE, sep = ";")

你可能感兴趣的:(读取 gzip 文件)