convergence-arrow 0.17.1

Utils for bridging Apache Arrow and PostgreSQL's wire protocol
Documentation
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env Rscript

csv <- function(file, ...) {
	write.csv(data.frame(...), paste0("convergence-arrow/data/", file, ".csv"), row.names = F)
}

csv("100_4buckets",
	id = seq(1, 100),
	bucket = c("a", "b", "c", "d")
)