geom_bar() 和 geom_col() 的所有位置是什么?
What are all the positions for geom_bar() and geom_col()?
我查看了无数地方,但其中 none 实际上为这两个 geom
提供了所有可用的 position
。我知道有 stack
(把一个放在另一个上面),dodge
(让每个组并排成小簇),identity
(让它们一个在另一个前面)和 fill
(使它们填充 y
轴,作为整体的一部分)。但是还有其他的吗?
我想知道是否有一个地方是所有可用的 positions
,或者至少,是否有人知道其他选择。
这是position
的例子:
[...]
geom_bar(position = "stack")
[...]
或与geom_col()
一起使用(两种方式都有效)。
如果您想获得函数参数的帮助,只需调用帮助
?geom_bar
在那里你会发现
position:
Position adjustment, either as a string, or the result of a call to a position adjustment function.
所以,让google像“ggplot位置调整函数”这样的东西。
第一个结果是 ggplot2 参考 https://ggplot2.tidyverse.org/reference/。
在那里您可以找到“位置调整”和链接的位置调整列表。
我查看了无数地方,但其中 none 实际上为这两个 geom
提供了所有可用的 position
。我知道有 stack
(把一个放在另一个上面),dodge
(让每个组并排成小簇),identity
(让它们一个在另一个前面)和 fill
(使它们填充 y
轴,作为整体的一部分)。但是还有其他的吗?
我想知道是否有一个地方是所有可用的 positions
,或者至少,是否有人知道其他选择。
这是position
的例子:
[...]
geom_bar(position = "stack")
[...]
或与geom_col()
一起使用(两种方式都有效)。
如果您想获得函数参数的帮助,只需调用帮助
?geom_bar
在那里你会发现
position:
Position adjustment, either as a string, or the result of a call to a position adjustment function.
所以,让google像“ggplot位置调整函数”这样的东西。 第一个结果是 ggplot2 参考 https://ggplot2.tidyverse.org/reference/。 在那里您可以找到“位置调整”和链接的位置调整列表。