我们如何根据标准切割条形图

时间:2018-02-17 16:46:46

标签: r ggplot2 data-visualization

我已经生成了以下情节。当IV值高于0.0015时,我想用一条线切割条形图并显示该线。

ggplot(data = WOE_categorical_summary, aes(x = reorder(Variable, -IV), y = IV)) +
  geom_bar(stat = "identity", fill = "orange") + 
  geom_text(aes(label=IV)) + 
  labs(xlab = "Variables") +
  bar_theme1

enter image description here

1 个答案:

答案 0 :(得分:2)

一种可能的解决方案是在代码中添加一个额外的图层:

+ geom_hline(aes( yintercept = 0.0015))