Entering edit mode
5.1 years ago
SeaStar
▴
50
I have created this PCA plot using BioGenerics with my data:
boxplotPCA= plotPCA(table, labels =TRUE, isLog= FALSE, main= "PCA")
obtaining this plot:
But I would like to make the graph more explanatory by adding dots near each name. Someone can help me?
Under the hood, it's just the scatterplot. If you know some coding, you could try to extract the coordinates of PC1 & PC2, and write your own code to plot it.
In which way can I extract the coordinates? for example, making
prcomp()
could be a good solution?