R/RankInterpolate.R

Defines functions RankInterpolate

RankInterpolate <-
  function(Xtrain, Xtest) {
    Xrank <- matrix(sapply(seq.int(ncol(Xtest)), FUN = function(cl) RankInterpolateVector(Xtrain[, cl], Xtest[, cl])), ncol = ncol(Xtest))
    colnames(Xrank) <- colnames(Xtest)
    return(Xrank)
  }

Try the rerf package in your browser

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

rerf documentation built on May 2, 2019, 8:16 a.m.