Top loadings #4538
-
Hi, I'm wondering how Seurat is finding it's top loading genes. So for PC1, I think it's
Because the list of genes that came out from the above code matched to the Also, where can I find the equation for loading calculations? I want to know how Seurat came up with the number assigned to each gene/PCs. Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
We use the The loadings are the left singular vectors, by default multiplied by the singular values: https://github.com/satijalab/seurat/blob/master/R/dimensional_reduction.R#L866 |
Beta Was this translation helpful? Give feedback.
We use the
TopFeatures()
function to return genes for each PC to display inVizDimLoadings()
.The loadings are the left singular vectors, by default multiplied by the singular values: https://github.com/satijalab/seurat/blob/master/R/dimensional_reduction.R#L866