是否可以在x轴上将“高”位置切换到右侧,将“低”位置切换到左侧?

时间:2019-06-22 13:32:06

标签: r ggplot2 ggpubr

我刚刚通过两种方差分析进行了交互分析,并创建了我的图形。不幸的是,在x轴上,高位条件始终在左侧,低位条件位于右侧。但是我希望条件在x轴的左侧为“低”,在右侧为“高”。

我已经尝试过以另一种方式导入我的数据,因此,条件低x低位于列表的顶部,并且在列表的和中具有条件高x高的数据。

ggline(dataH3, x= "news_source", y="sharing_intention", color = "rec_source", 
       add = c("mean_se"), palette = c("blue", "red"), shape=1, 
       title = "The Effect of News Source Credibility on Sharing Intention", xlab = "News Source Recommendation", 
       ylab = "Sharing Intention", legend.title = "Recommendation source credibility", ggtheme = theme_bw()) + 
       theme(plot.title = element_text(hjust = 0.5))

没有错误消息,但我仍然想更改布局。

1 个答案:

答案 0 :(得分:1)

只需重新调整因子变量的水平(高和低是因子水平,并按字母顺序排列它们):

dataH3$news_source <- factor(dataH3$news_source, levels = c("low", "high"))