Print contents of the partDependence.

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

Arguments

x

Fitted object of class partDependence.

...

Further arguments passed to or from other methods.

Value

No return value, called for side effects

Author

Markus Ulmer

Examples

set.seed(1)
x <- rnorm(10)
y <- sign(x) * 3 + rnorm(10)
model <- SDTree(x = x, y = y, Q_type = 'no_deconfounding', cp = 0.5)
pd <- partDependence(model, 1, X = x)
print(pd)
#> Partial dependence of covariate:  1 
#> Plot to analyze!