Last active
December 8, 2017 16:53
-
-
Save lgatto/94983a45c63f76d762803c460a98e334 to your computer and use it in GitHub Desktop.
All PCs and %age vars
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pca <- prcomp(exprs(object), scale = TRUE, center = TRUE) | |
pcadata <- pca$x | |
vars <- (pca$sdev)^2 | |
vars <- vars / sum(vars) * 100 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment