0byt3m1n1
Path:
C:
/
Program Files
/
R
/
R-4.2.2
/
library
/
vroom
/
bench
/
all_numeric-wide
/
[
Home
]
File: input.R
args <- commandArgs(trailingOnly = TRUE) rows <- as.integer(args[[1]]) cols <- as.integer(args[[2]]) output <- args[[3]] set.seed(42) RNGversion("3.5.3") data <- vroom::gen_tbl(rows, cols, col_types = strrep("d", cols)) vroom::vroom_write(data, output, "\t")