我是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()
最好
克里斯