文档没有解释这个width论点到底是什么
默认值为width = NULL,但试验和错误显示width = 0.9似乎产生默认效果(请参阅postscript).但是,我找不到ggplot2源代码中设置此类默认值的位置.从而,
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)