verify_data: Verify the integrity of the data object

View source: R/verify_data.R

verify_dataR 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 "id".

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)

funkyheatmap documentation built on April 11, 2025, 5:39 p.m.