View source: R/verify_row_groups.R
verify_row_groups | R Documentation |
Verify the integrity of the row groups object
verify_row_groups(row_groups, row_info)
row_groups |
A data frame describing of how to group the rows
in
|
row_info |
A data frame describing the rows of
|
The row groups object with all expected rows.
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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.