diffdf_has_issues | R Documentation |
Utility function which returns TRUE if an diffdf object has issues or FALSE if an diffdf object does not have issues
diffdf_has_issues(x)
x |
diffdf object |
# Example with no issues
x <- diffdf(iris, iris)
diffdf_has_issues(x)
# Example with issues
iris2 <- iris
iris2[2, 2] <- NA
x <- diffdf(iris, iris2, suppress_warnings = TRUE)
diffdf_has_issues(x)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.