Description Usage Arguments Value Author(s) Examples
Tabulates the values in a matrix by row (column).
1 2 3 4 | ## S3 method for class 'matrix'
rowTabulates(x, values=NULL, ...)
## S3 method for class 'matrix'
colTabulates(x, values=NULL, ...)
|
x |
An |
values |
An |
... |
Not used. |
Returns a NxJ (KxJ) matrix
where
N (K) is the number of row (column) vector
s tabulated and
J is the number of values counted.
Henrik Bengtsson
1 2 3 4 5 6 7 8 9 10 11 12 13 | x <- matrix(1:5, nrow=10, ncol=5)
print(x)
print(rowTabulates(x))
print(colTabulates(x))
# Count only certain values
print(rowTabulates(x, values=1:3))
y <- as.raw(x)
dim(y) <- dim(x)
print(y)
print(rowTabulates(y))
print(colTabulates(y))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.