On 04/30/2013 08:24 AM, capricy gao wrote:
I did a PCA for my data which has a dimension of 19000X4 using princomp
pca2=princomp((data), cor=F)
and obtained a biplot with 19000 labels which were very busy. How can I just
show 19000 spot w/o labels?
biplot(pca2)
Hi capricy,
I suppose you could try:
biplot(pca2,xlabs=rep(".",19000))
Jim
______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.