相关疑难解决方法(0)

position_dodge中的width参数是什么?

文档没有解释这个width论点到底是什么

  1. 它指定的宽度是多少?
  2. 什么是"单位"?
  3. 什么是默认值?

默认值为width = NULL,但试验和错误显示width = 0.9似乎产生默认效果(请参阅postscript).但是,我找不到ggplot2源代码中设置此类默认值的位置.从而,

  1. 你能解释一下如何在ggplot2代码中实现默认闪避吗?

问题的精神是允许ggplot2用户在width没有反复试验的情况下找到合适的值.PS:

ggplot(data = df) +
  geom_bar(aes(x, y, fill = factor(group)), 
           position = position_dodge(), stat = "identity")

ggplot(data = df) +
  geom_bar(aes(x, y, fill = factor(group)), 
           position = position_dodge(0.9), stat = "identity")
Run Code Online (Sandbox Code Playgroud)

r ggplot2

36
推荐指数
1
解决办法
2万
查看次数

标签 统计

ggplot2 ×1

r ×1