我正在寻找形式类似于weighted.mean()的东西。我通过搜索找到了一些解决方案,这些解决方案写出了整个功能,但希望它对用户更友好。

最佳答案

以下软件包均具有计算加权中位数的功能:“aroma.light”,“isotone”,“limma”,“cwhmisc”,“ergm”,“laeken”,“matrixStats,PSCBS”和“bigvis” (在github上)。

为了找到它们,我在“sos”包中使用了无价的findFn(),它是R内置帮助的扩展。

findFn('weighted median')

要么,
???'weighted median'
作为???是一种快捷方式,?some.functionhelp(some.function)相同

09-19 02:35