Nothing
test_that("Tests that random forest is working correctly", {
x <- iris[, -1]
y <- iris[, 1]
context('Forestry base function')
# Test forestry (mimic RF)
forest <- forestry(
x,
y,
ntree = 500,
replace = TRUE,
sample.fraction = .8,
mtry = 3,
nodesizeStrictSpl = 5,
nthread = 1,
splitrule = "variance",
splitratio = 1,
nodesizeStrictAvg = 5,
seed = 2
)
plot(forest)
# Test predict
y_pred <- predict(forest, x, seed = 2)
# Test feature.new validation
expect_error(predict(forest, x[, -1], ))
expect_warning(y_pred_shuffled <- predict(forest, x[, ncol(x):1], seed = 2))
expect_equal(y_pred, y_pred_shuffled, tolerance = 1e-12)
# Mean Square Error
skip_if_not_mac()
mean((y_pred - y) ^ 2)
expect_equal(mean((y_pred - y) ^ 2), 0.06466401683066609618056, tolerance = 1e-12)
# Test factors with missing obs and unused levels are correctly handled
x$Species[1:70] <- NA
forest <- forestry(
x,
y, seed = 2,nthread = 1)
y_pred <- predict(forest, x, seed = 2)
# options(digits = 10)
# print(mean((y_pred - y) ^ 2))
expect_equal(mean((y_pred - y) ^ 2), 0.107300804721, tolerance = 1e-6)
# Test passing a bad parameter to forestry
expect_error(rf <- forestry( x = iris[,-1], y = iris[,1], seed = seed_i),
"A parameter passed is not assigned: object 'seed_i' not found\n")
})
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.