R/max2max.R

Defines functions max2max

Documented in max2max

#' max2max
#' positive Data conversion.
#' @param x The Data that needs to be maximized.
#' @param i Index column.
#'
#' @return Index column maximized
max2max<-function(x,i){
  sampleData2<-x
  i=i
  sampleData3<-sampleData2[,c(1,i)]
  transDatacol<-sampleData3
  return(transDatacol)
}

Try the WtTopsis package in your browser

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

WtTopsis documentation built on Oct. 26, 2021, 5:07 p.m.