Last chance! 50% off unlimited learning
Sale ends in
Normalize count data per cell and transform to log scale
LogNormalize(data, scale.factor = 10000, verbose = TRUE, ...)
Matrix with the raw count data
Scale the data. Default is 1e4
Print progress
Ignored
Returns a matrix with the normalize and log transformed data
# NOT RUN {
mat <- matrix(data = rbinom(n = 25, size = 5, prob = 0.2), nrow = 5)
mat
mat_norm <- LogNormalize(data = mat)
mat_norm
# }
Run the code above in your browser using DataLab