R/dumpTab.R

Defines functions dumpTab

dumpTab <- function(x, file){
##
## WRITE A TABLE TO FILE, IN print-FORMAT
##
#
#
.old <- options()
options(width = 10000)
on.exit(options(.old))
.x <- as.data.frame(x)
sink(file = file)
print(.x, quote = F, row.names = F)
sink()


}

Try the Haplin package in your browser

Any scripts or data that you put into this service are public.

Haplin documentation built on May 20, 2022, 5:07 p.m.