fitted.e2tree: Extract Fitted Values from an E2Tree Model

View source: R/methods_e2tree.R

fitted.e2treeR Documentation

Extract Fitted Values from an E2Tree Model

Description

Returns the fitted values (predictions) for the training data used to build the E2Tree model.

Usage

## S3 method for class 'e2tree'
fitted(object, ...)

Arguments

object

An e2tree object.

...

Additional arguments (ignored).

Value

A vector of fitted values.

Examples


data(iris)
smp_size <- floor(0.75 * nrow(iris))
train_ind <- sample(seq_len(nrow(iris)), size = smp_size)
training <- iris[train_ind, ]

ensemble <- randomForest::randomForest(Species ~ ., data = training,
  importance = TRUE, proximity = TRUE)
D <- createDisMatrix(ensemble, data = training, label = "Species",
  parallel = list(active = FALSE, no_cores = 1))
setting <- list(impTotal = 0.1, maxDec = 0.01, n = 2, level = 5)
tree <- e2tree(Species ~ ., training, D, ensemble, setting)

fitted(tree)



e2tree documentation built on May 15, 2026, 5:06 p.m.