gpt4 book ai didi

r - 在beanplot{beanplot}中使用 'wd='动态改变bean的宽度

转载 作者:行者123 更新时间:2023-12-02 00:07:32 26 4
gpt4 key购买 nike

我正在使用 beanplot 包的 beanplot 函数,但我想不出一种使用 wd= 参数的方法,而且效果很好。

我想要什么

  • 显示宽度取决于样本大小的 bean 图。
  • (现在)了解“wd=”的用途以及如何使用它。

到目前为止,当我尝试使用 wd 参数时,作为一个列表它给我一个错误,作为一个向量,它给我一些奇怪的东西(wd 似乎乘以密度估计值)

示例

library(beanplot)
set.seed(2000)
Test <- data.frame(
x=rnorm(30),
f1 = factor(c(rep('A', 10), rep('B',20))),
f2=factor(c('M','F'))
)

beanplot(x~f1,Test,
col=list('orange','yellow'),
wd=c(1:2/2),
boxwex = 1
)

beanplot1

最佳答案

好的,经过一些个人试验/错误后,我得到了两个答案:

首先,在查看代码后,wd 不应该以这种方式使用,并且不支持具有多个值(与“col=”不同)。似乎“wd=”并不意味着在正常使用中直接用于指定 beanplot 宽度。实际上,当没有提供“wd”(或 wd=NA)时,wd 是根据“maxwidth=”计算的,但归一化为所有密度函数的最大值。因此,如果要控制 bean 的宽度,指定 'maxwidth=' 似乎更合适。

其次,我编写了一些代码来实际实现我想要的。可能有点乱,请随意改进。此示例可用于函数 beanplot native 不支持的任何参数变体。

您会注意到代码显示了一个示例,说明为什么“wd=”仍然很重要,因为我们希望对所有密度图的 bean 的所有宽度值进行一次归一化。

col_list = list('orange','yellow')
wd_fac = aggregate(x~f1,Test,length)$x # get the size relative to the number of points in each bean
wd_fac <- wd_fac/max(wd_fac)

par(mfrow=c(1,2))
## Normal plot
beanplot(x~f1,Test, col=col_list)
## Our plot
bp <- beanplot(x~f1,Test,what=c(T,F,F,F)) # plots the line and frames + get the general parmeters
sapply(1:length(levels(Test$f1)),
function(X){
beanplot(subset(Test, f1 == levels(f1)[X])$x,
col=col_list[X],
bw = bp$bw, # we may want to keep the bandwidth
wd= bp$wd*wd_fac[X],
at=X,
what=!c(T,F,F,F),
add = T)}
)

beanplot

关于r - 在beanplot{beanplot}中使用 'wd='动态改变bean的宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17371087/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com