powered by
Print contents of the SDForest.
# S3 method for SDForest print(x, ...)
No return value, called for side effects
Fitted object of class SDForest.
SDForest
Further arguments passed to or from other methods.
Markus Ulmer
set.seed(1) n <- 50 X <- matrix(rnorm(n * 5), nrow = n) y <- sign(X[, 1]) * 3 + rnorm(n) model <- SDForest(x = X, y = y, Q_type = 'no_deconfounding', nTree = 5, cp = 0.5) print(model)
Run the code above in your browser using DataLab