Hi all,
I have a plot like this, but I am trying to make a better plot using ggplot.
here is my script without ggplot
data <- read.csv("plotdata.csv", header=T)
#making plot
#plot
plot(data$PCpG, data$ICpG, main = "Plot", col = "orange",
xlab = "PCpG", ylab= "ICpG")
points(data$PCpG.1, data$ICpG.1, col = "blue")
points(data$PCpG.2, data$ICpG.2, col = "green", pch=2)
points(data$PCpG.3, data$ICpG.3, col = "purple", pch=2)
Does anyone know or can give me suggestion how to make plot like this using ggplot?
here is my data data
Thank you in advance
Best