https://github.com/cran/robCompositions
Raw File
Tip revision: 7d494ee1afed715ee21282f745fd94079d5499c3 authored by Matthias Templ on 07 February 2014, 16:24:06 UTC
version 1.7.0
Tip revision: 7d494ee
constSum.R
constSum <- function(x, const=1, na.rm=TRUE){
	return(x / rowSums(x, na.rm) * const)
}
back to top