trim.vlmc_cpp {mixvlmc}R Documentation

This function returns a trimmed VLMC from which match positions have been removed.

Description

This function returns a trimmed context tree from which match positions have been removed.

Usage

## S3 method for class 'vlmc_cpp'
trim(ct, ...)

Arguments

ct

a VLMC.

...

additional arguments for the trim function.

Details

Trimming in the C++ backend is done directly in the Rcpp managed memory and cannot be detected at R level using e.g. utils::object.size().

Value

a trimmed VLMC

Examples

## VLMC trimming is generally useless unless match positions were kept
pc <- powerconsumption[powerconsumption$week %in% 5:6, ]
dts <- cut(pc$active_power, breaks = 4)
model <- vlmc(dts, backend = "C++", keep_match = TRUE)
model <- trim(model)

[Package mixvlmc version 0.2.1 Index]