check_schema | R Documentation |
Validate a data.frame against a schema
check_schema(data, schema)
data |
A data.frame to check |
schema |
A Schema object created with 'schema()' |
invisible if validation passes, otherwise stops with error
my_schema <- schema(
mpg ~ is.numeric
)
check_schema(mtcars, my_schema)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.