print.SDForest: Print SDForest

View source: R/print.R

print.SDForestR Documentation

Print SDForest

Description

Print contents of the SDForest.

Usage

## S3 method for class 'SDForest'
print(x, ...)

Arguments

x

Fitted object of class SDForest.

...

Further arguments passed to or from other methods.

Value

No return value, called for side effects

Author(s)

Markus Ulmer

See Also

SDForest

Examples


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)

SDModels documentation built on April 11, 2025, 5:50 p.m.