I have a simple PLINK MDS "Cauc71.mds" :
FID IID SOL C1 C2
1 Lezgins lez37 0 0.0196617 0.0366344
2 Georgians mg47 0 0.0121934 -0.0335062
...
71 Kumyk Kumyk22 0 0.00135308 0.00216335
The following code will produce a plot in R :
d <- read.table("Cauc71.mds", header=TRUE)
plot(d$C1, d$C2, pch=20, cex=2, col = d$SOL+1)
Is there a simple way to use text-labels from the IID column {lez37, mg47 etc } instead of the pch points?
Thank you!