https://github.com/cran/robCompositions
Raw File
Tip revision: 37555063454f14ae40f041b3a8f0eb2d3dc3be4c authored by Matthias Templ on 10 January 2011, 00:00:00 UTC
version 1.4.4
Tip revision: 3755506
constSum.R
constSum <- function(x, const=1){
	return(x / rowSums(x) * const)
}
back to top