服务热线
178 0020 3020
任务一:
library(ggplot2)
library(reshape2)
library(ggthemes)
mtcars
w=ggplot(mtcars,aes(factor(cyl)))+geom_bar(aes(fill=factor(gear)))+labs(x="cyl",y="count",title="R2-22")+scale_fill_discrete(name="gear")
w
mytheme=w+theme(panel.grid.major =element_blank(), panel.grid.minor = element_blank(),panel.background = element_blank(),axis.line = element_line(colour = "black"))
mytheme
任务二
install.packages("latex2exp")
library(latex2exp)
data=read.csv(file.choose())
head=(data)
data$significant = ifelse(abs(log2(data$FC)) > 1 & data$q_value < 0.05,"yes","no" )
data$mylabels =ifelse(abs(log2(data$FC)) > 1 & data$q_value < 0.05,as.character(data$锘縂ene.ID),NA)
mysig = subset(data,significant == "yes")
mysig
ydrop = -0.6
textdrop = 0.3
myplot = ggplot(data,aes(x = log2(FC) , y = -log2(q_value),size = significant))+geom_point(col = "grey70",alpha = 1) +xlim(-2.5,2.7) +ylim(-0.8,15) +scale_size_manual(values = c(2,0)) +geom_point(data = mysig,aes(x = log2(FC),y = -log2(q_value),col = mylabels),size = 4,position = position_jitter(height = 0.1,width = 0))+geom_text(aes(label = mylabels),size =3,hjust = 0,vjust = -1,col = "black",fontface = "italic") +annotate("segment",x=1 , xend=2.5, y = ydrop,yend = ydrop ,color = "black",size = 1,arrow = arrow(angle = 18,ends = "last",type = "closed")) +annotate("segment", x = -1 , xend = -2.5, y = ydrop,yend = ydrop ,color = "black",size = 1,arrow = arrow(angle = 18,ends = "last",type = "closed")) +annotate("text",x = 1.7,y = textdrop,label = "Upregulated",size = 4.5) +annotate("text",x = -1.7,y = textdrop,label = "Downregulated",size = 4.5) +labs(title = "CMTM6 sgRNA2 vs Control",caption = "create by R2-22") + labs(x = expression(log[2])) +labs(x = expression(paste(log[2],"(fold change)")),y = expression(paste(-log[2],"(Q value)")))
myplot + mytheme
尽力只能画到这个程度了。代码不知道哪里出了问题,总是提示错误:Don't know how to add o to a plot。然后唯一出现过一次这个图就立刻保存下来了,再次运行就不出现了,所以先提交作业吧
附件