5
ネットワークURLまたはrunpipe
外部コマンドからテーブルを読み取る方法はありますか? DataFrame.readtableはファイルからの読み取りのみをサポートしているようです。ジュリアはファイルからではなくストリームから読み込み可能
Rの例では、私たちは何ができる:
df = read.table(url("http://example.com/data.txt"))
x = read.table(pipe("zcat data.txt | sed /^#/d | cut -f '11-13'"), colClasses=c("integer","integer","integer"), fill=TRUE, row.names=NULL)