R/WrapperFunctions.R

Defines functions scaleRJ

scaleRJ = function( X, medians = FALSE )
{
  if ( !is.matrix( X ) )
  {
    stop( "Input must be in matrix form" )
  }

  X = scale_c( X, medians )

  return( X )
}

Try the RJcluster package in your browser

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

RJcluster documentation built on March 18, 2022, 5:08 p.m.