print.SDForest | R Documentation |
Print contents of the SDForest.
## S3 method for class 'SDForest'
print(x, ...)
x |
Fitted object of class |
... |
Further arguments passed to or from other methods. |
No return value, called for side effects
Markus Ulmer
SDForest
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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.