服务热线
178 0020 3020
setwd("E:/bioinformatics/fanzhimin")
library(ggplot2)
data1<-read.csv("R2-1-1.csv", header = TRUE)
ggplot(data1, aes(x=A,y=B,color=SIZE)) + geom_point(size=3,shape=21)+xlab("A gene expression")+ ylab("B gene expression")+xlim(-2,3)+ ylim(-1,3)+ ggtitle("R2-36")
data2<-read.csv("R2-1-2.csv", header = TRUE)
ggplot(data2, aes(Time,value,color =SIZE,shape = SIZE))+geom_line(color = "black")+geom_point(size=4)+ ggtitle("R2-36")
附件