R/sstab2csv.R

Defines functions sstab2csv

Documented in sstab2csv

sstab2csv <-function(in.file = "", out.file = "") {
	
	df <- read.table(in.file, skip = 17, sep = "\t", nrows = 2048)
	write.table(df, file = out.file, row.names = FALSE,
		col.names = FALSE, quote = FALSE, sep = ",")

	}

Try the SpecHelpers package in your browser

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

SpecHelpers documentation built on May 2, 2019, 11:01 a.m.