Learn R Programming

imcExperiment (version 0.99.0)

percentilenormalize: given a matrix of intensity counts, perform min/max norm.

Description

given a matrix of intensity counts, perform min/max norm.

Usage

percentilenormalize(data = NULL, percentile = NULL)

Arguments

data

matrix of numeric data only

percentile

numeric value 0.99 default.

Value

normalized data, each column on [0,1] scale.

Examples

Run this code
# NOT RUN {
 data(data)
 dim(data)
 expr<-data[,3:36]
 normExp<-percentilenormalize(data=expr,percentile=0.99)
 normExp<-as.matrix(normExp)
# }

Run the code above in your browser using DataLab