https://github.com/cran/robCompositions
Raw File
Tip revision: e0e46e2d22f0b04308b896fd000cd7f493f04383 authored by Matthias Templ on 16 August 2010, 00:00:00 UTC
version 1.4.3
Tip revision: e0e46e2
constSum.R
constSum <- function(x, const=1){
	return(x / rowSums(x) * const)
}
back to top