Nothing
test_that("error when object is not randomForest", {
expect_error(pmml.randomForest("foo"), "Not a legitimate randomForest object")
})
test_that("no error occurs in doc example", {
skip_if_not_installed("randomForest")
library(randomForest)
iris_rf <- randomForest(Species ~ ., data = iris, ntree = 20)
expect_error(pmml(iris_rf), NA) # expect no error
})
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.