R/rowmean.R

Defines functions rowmean

Documented in rowmean

rowmean <-
function(x){
   rowvec <- rowMeans(x)
   ncol <- dim(x)[2]
   ones <- rep(1,ncol)
   rowvec %*% t(ones)
}

Try the svdvisual package in your browser

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

svdvisual documentation built on May 2, 2019, 4:15 a.m.