只是无法正常工作以将我的标题放在R中的ggplot2中

时间:2019-03-17 18:51:08

标签: r ggplot2

我是R的新手。我遇到的问题是使用ggplot将标题放在hjust中,但是我不确定自己做错了什么。这是我的以下代码和条形图。任何帮助将不胜感激。

ggplot(mentalsum, aes(x=task, y=mental, fill = task)) + 
  ggtitle( "NASA-TLX Mental Demand") + 
  theme(plot.title = element_text(hjust = 0.5)) + 
  geom_bar(position=position_dodge(), stat="identity") +
  geom_errorbar(aes(ymin=mental, ymax=mental+se),
                width=.2,                    # Width of the error bars
                position=position_dodge(.9)) + xlab("Task") + 
  ylab("Weighted Ratings") + 
  labs(fill= ("")) + 
  theme_classic()

最好

克里斯

enter image description here

0 个答案:

没有答案