R/makeDeltaRanksTable.R

Defines functions makeDeltaRanksTable

Documented in makeDeltaRanksTable

makeDeltaRanksTable <-
function(ll) {
	dats=names(ll)
	kognames=ll[[1]][,1]
	kogtable=c()
	for (n in dats){
		kogtable=data.frame(cbind(kogtable,ll[[n]][,3][match(kognames,ll[[n]][,1])]))
	}
	names(kogtable)=dats
	row.names(kogtable)=kognames
	return(kogtable)
}

Try the KOGMWU package in your browser

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

KOGMWU documentation built on May 2, 2019, 4 p.m.