I wonder if I can plot a serie of dots getting a colour shade for each group (named type in my case).
That's my script:
data <- read.csv("prova.csv", header=TRUE, sep=";", dec = ".")
plot(data$F2, data$F1,
xlim=c(3000,500) , ylim=c(1200,200),
pch=18,
cex=2,
col=data$type,
xlab="F2", ylab="F1",
main="Sample"
)
where for each "type" I have different samples.
Thank you in advance, valentina