Nothing
Code
(expect_pkg_error_classes(validator(data.frame(name = "Alice")), "stbl",
"missing_element"))
Output
<error/stbl-error-missing_element>
Error:
! `data.frame(name = "Alice")` must contain element "age".
Code
(expect_pkg_error_classes(validator(data.frame(a = 1L)), "stbl", "too_few_rows")
)
Output
<error/stbl-error-too_few_rows>
Error:
! `data.frame(a = 1L)` must have at least 2 rows.
x 1 is too few.
Code
(expect_pkg_error_classes(validator(data.frame(a = 1L)), "stbl", "missing_cols")
)
Output
<error/stbl-error-missing_cols>
Error:
! `data.frame(a = 1L)` must contain column "b".
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.