verify_row_groups {funkyheatmap} | R Documentation |
Verify the integrity of the row groups object
Description
Verify the integrity of the row groups object
Usage
verify_row_groups(row_groups, row_info)
Arguments
row_groups |
A data frame describing of how to group the rows
in
|
row_info |
A data frame describing the rows of
|
Value
The row groups object with all expected rows.
Examples
library(tibble)
row_groups <- tribble(
~group, ~level1,
"foo", "Foo",
"bar", "Bar"
)
row_info <- tribble(
~id, ~group,
"name", NA_character_,
"foo1", "foo",
"foo2", "foo",
"bar1", "bar",
"bar2", "bar"
)
verify_row_groups(row_groups, row_info)
[Package funkyheatmap version 0.5.0 Index]