Standard_Normalization: Standard Normalization

Description Usage Arguments Value Author(s) Examples

View source: R/Standard_Normalization.R

Description

To normalize the data matrix by column

Usage

1

Arguments

x

The data matrix to be normalized

Value

The normalized matrix

Author(s)

Xiaoyao Yin

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
data1 <- matrix(0,100,100)
data2 <- matrix(0,80,100)
for (i in 1:20)
{
  data1[i,] <- rnorm(100,10,1)
}
for (i in 21:40)
{
  data1[i,] <- rnorm(100,20,1)
}
for (i in 41:60)
{
  data1[i,] <- rnorm(100,30,1)
}
for (i in 61:80)
{
  data1[i,] <- rnorm(100,40,1)
}
for (i in 81:100)
{
  data1[i,] <- rnorm(100,50,1)
}
new_data1 <- Standard_Normalization(data1)

OSNMTF documentation built on Dec. 1, 2019, 1:22 a.m.