Skip to contents

Scale data matrix

Usage

scale_data(
  data.x,
  do.center = T,
  do.scale = T,
  row.means = NULL,
  row.sds = NULL
)

Arguments

data.x

Input data matrix.

do.center

Whether center the row values. (default TRUE)

do.scale

Whether scale the row values. (default TRUE)

row.means

The provided row means to center. (default NULL)

row.sds

The provided row standard deviations to scale. (default NULL)