服务热线
178 0020 3020
散点图
mydata<-read.cvs("R2-1-1.csv")
library(ggplot2)
ggplot(mydata,aes(x=A,y=B,colour=SIZE))+geom_point(shape=1,size=4)+xlab("A gene expression")+ylab("B gene expression")+ggtitle("R2-18")
折线图
mydata<-read.csv("R2-1-2.csv")
library(ggplot2)
ggplot(mydata, aes(Time,value,color =SIZE,shape = SIZE))+geom_line(color = "blue")+geom_point(size=3)+ ggtitle("R2-18")+xlab("Time")+ylab("value")
附件