Is there a weighted.median() function?

The following packages all have a function to calculate a weighted median: ‘aroma.light’, ‘isotone’, ‘limma’, ‘cwhmisc’, ‘ergm’, ‘laeken’, ‘matrixStats, ‘PSCBS’, and ‘bigvis’ (on github).

To find them I used the invaluable findFn() in the ‘sos’ package which is an extension for R’s inbuilt help.

findFn('weighted median')

Or,

???'weighted median'

as ??? is a shortcut in the same way ?some.function is for help(some.function)

Leave a Comment