Description Usage Arguments Value Examples
A simple function to create boolean matrices to be used when constructing LaTeX tables.
1 | booleanMatrix(data, find = "max", th = 0, by = "row")
|
data |
It can be a data frame, a matrix or a vector. |
find |
A string indicating what has to be detected. Possible values are:
|
th |
Thershold used when |
by |
A string or string vector indicating where the min/max values have to be find. It can be |
A boolean matrix that matches in dimension the output data and where the identified elements are marked as TRUE.
1 2 3 | data('data_gh_2008')
booleanMatrix(data.gh.2008, find='min', by='row')
booleanMatrix(data.gh.2008, find='ge', th=0.5)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.