R/evaluate.R

Defines functions arrange

arrange<-function(x_r){
  c_matrix=matrix(0,length(x_r),length(x_r[[1]]))
  for(i in 1:length(x_r)){
    c_matrix[i,]<-(x_r[[i]])
  }
  c_matrix
}

Try the BRISC package in your browser

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

BRISC documentation built on April 30, 2022, 1:05 a.m.