Nothing
library(testthat)
test_that("Tests that maxDepth parameter is working correctly", {
x <- iris[, -1]
y <- iris[, 1]
context('Maximum depth for a tree')
# Set seed for reproductivity
set.seed(24750371)
# Test forestry (mimic RF)
forest <- forestry(
x,
y,
ntree = 500,
replace = TRUE,
sample.fraction = .8,
mtry = 3,
nodesizeStrictSpl = 5,
maxDepth = 4,
nthread = 2,
splitrule = "variance",
splitratio = 1,
nodesizeStrictAvg = 5
)
# Test predict
y_pred <- predict(forest, x)
skip_if_not_mac()
# Mean Square Error
expect_equal(sum((y_pred - y) ^ 2), 11.09133744144846822621, tolerance = 1e-12)
})
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.