ggplot不处理theme_bw()

时间:2015-11-25 17:57:22

标签: r ggplot2

我试图在两种不同的条件下制作大脑激活的直方图,并且我有主要的情节。但是,我想更改x轴标签的方向,以及图例标签和字体..所有这些都通过theme()参数,但由于某种原因,我的情节看起来不像把它们记在账户里。

     x = colnames(data[,c(3:8,12:21)])
     y1 = meand3h
     y2 = meand5h

     to_plot <- data.frame(x=x,y1=y1,y2=y2) 
     melted<-melt(to_plot, id="x")


     p<-ggplot(melted,aes(x=x,y=value,fill=variable))

     p
     + scale_shape_discrete(name="Group",labels=c("Three days","Five days")) 
     + geom_bar(stat="identity", alpha=1) 
     + labs(y = "Level of Activation")
     + labs(title = "Activation of Brain Areas After Training")    
     + theme_bw(base_size = 12, base_family = "Times") 
     + theme(axis.title.x = element_text(angle=180))

任何人都可以帮我解决这个问题吗?

1 个答案:

答案 0 :(得分:-2)

这是因为您有两个引起对比的主题,所以请在theme()和theme_bw()之间进行选择。