Open
Description
It would be useful if rowTabulates/colTabulates
could handle numeric
values like table
does.
This has many uses. For example, getAnywhere("friedman.test.default")
contains:
r <- t(apply(y, 1L, rank))
TIES <- tapply(c(r), row(r), table)
(BTW, I wonder how much faster many operations in base
, stats
and utils
would be if they used matrixStats
functions).