View source: R/transformTFIDF.R
transformTFIDF | R Documentation |
Transform/normalize compartment calls using TF-IDF
transformTFIDF(mat, scale.factor = 100000)
mat |
n x p input matrix (n = samples/cells; p = compartments) |
scale.factor |
Scaling factor for the term-frequency (TF) |
This function and its helpers were modeled after or taken from:
http://andrewjohnhill.com/images/posts/2019-5-6-dimensionality-reduction-for-scatac-data/analysis.html
https://divingintogeneticsandgenomics.rbind.io/post/clustering-scatacseq-data-the-tf-idf-way/
A TF-IDF transformed matrix of the same dimensions as the input
m <- 1000
n <- 100
mat <- round(matrix(runif(m * n), m, n))
# Input needs to be a tall matrix
tfidf <- transformTFIDF(mat)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.