https://github.com/cran/robCompositions
Raw File
Tip revision: bea0f6203c78ee704dca8deb7c74cc48e13ee950 authored by Matthias Templ on 15 May 2012, 15:35:41 UTC
version 1.6.0
Tip revision: bea0f62
constSum.R
constSum <- function(x, const=1){
	return(x / rowSums(x) * const)
}
back to top