服务热线
178 0020 3020
R2-1-1
data1=read.csv("J:\\R\\1106\\R2-1-1.csv",header=TRUE)
library(ggplot2)
ggplot(data=data1, aes(x=A, y=B, color=SIZE))+
geom_point(shape=1,size=3)+xlab("A gene expression")+ylab("B gene expression")+ggtitle("R2-34")+scale_x_continuous(limits=c(-2,3))+
scale_y_continuous(limits=c(-1,3))
R2-1-2
data2=read.csv("J:\\R\\1106\\R2-1-2.csv",header=TRUE)
library(ggplot2)
ggplot(data=data2,aes(x=Time,y=value,color=SIZE,shape=SIZE))+
geom_point(size=3)+geom_line(color="red")+xlab("Time")+ylab("value")+ggtitle("R2-17")+
scale_x_continuous(limits=c(1,4))+scale_y_continuous(limits=c(1.25,2.50))
附件