subset.wsrf: Subset of a Forest

View source: R/subset.wsrf.R

subset.wsrfR Documentation

Subset of a Forest

Description

Obtain a subset of a forest.

Usage

## S3 method for class 'wsrf'
subset(x, trees, ...)

Arguments

x

an object of class wsrf.

trees

which trees should be included in the sub-forest. An integer vector, which indicates the index of the trees.

...

not used.

Value

An object of class wsrf.

See Also

combine

Examples

  library("wsrf")

  # Prepare parameters.
  ds     <- iris
  target <- "Species"
  vars   <- names(ds)
  if (sum(is.na(ds[vars]))) ds[vars] <- randomForest::na.roughfix(ds[vars])
  ds[target] <- as.factor(ds[[target]])
  form <- as.formula(paste(target, "~ ."))
  set.seed(42)
  train <- sample(nrow(ds), 0.7*nrow(ds))
  test  <- setdiff(seq_len(nrow(ds)), train)
  
  # Build model.  We disable parallelism here, since CRAN Repository
  # Policy (https://cran.r-project.org/web/packages/policies.html)
  # limits the usage of multiple cores to save the limited resource of
  # the check farm.

  model.wsrf <- wsrf(form, data=ds[train, vars], parallel=FALSE)
  print(model.wsrf)
  
  # Subset.
  submodel.wsrf <- subset.wsrf(model.wsrf, 1:200)
  print(submodel.wsrf)
  cl <- predict(submodel.wsrf, newdata=ds[test, vars], type="response")$response
  actual <- ds[test, target]
  (accuracy.wsrf <- mean(cl==actual))

wsrf documentation built on Jan. 6, 2023, 5:06 p.m.