View source: R/problem_message.R
problem_message | R Documentation |
problem_message()
is an S3 generic that powers the conversion of problems
detected by tbl_check()
, vec_check()
, and their related helper functions
into a human-readable message.
problem_message(problem, ...)
problem |
An object with base class |
... |
Additional arguments passed to the underlying methods. |
A length-1 character string with a message describing the problem.
Other Problem functions:
problem_grade()
,
problem_type()
,
problem()
problem <- problem( type = "class", expected = "character", actual = "numeric", expected_length = 1, actual_length = 2 ) problem_message(problem)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.