verify_data {funkyheatmap} | R Documentation |
Verify the integrity of the data object
Description
Verify the integrity of the data object
Usage
verify_data(data)
Arguments
data |
A data frame with items by row and features in the columns.
Must contain one column named |
Value
A verified data object
Examples
library(tibble)
data <- tribble(
~id, ~name, ~x, ~y,
"foo", "Foo", 0.5, 0.7,
"bar", "Bar", 1.0, 0.1
)
verify_data(data)
[Package funkyheatmap version 0.5.0 Index]