R/buildIndTable.R

buildIndTable <- function(counts){
	
	ind.table <- cbind(c(1:length(counts)), counts)
	colnames(ind.table) <- c("ID", "No.Obs")
	return(ind.table)
	
}

Try the capwire package in your browser

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

capwire documentation built on May 2, 2019, 9:45 a.m.