Learn R Programming

mixvlmc (version 0.2.1)

as_covlmc: Convert an object to a Variable Length Markov Chain with covariates (coVLMC)

Description

This generic function converts an object into a covlmc.

Usage

as_covlmc(x, ...)

# S3 method for tune_covlmc as_covlmc(x, ...)

Value

a covlmc

Arguments

x

an object to convert into a covlmc.

...

additional arguments for conversion functions.

See Also

tune_covlmc()

Examples

Run this code
## conversion from the results of tune_covlmc
pc <- powerconsumption[powerconsumption$week == 5, ]
dts <- cut(pc$active_power, breaks = c(0, quantile(pc$active_power, probs = c(0.5, 1))))
dts_cov <- data.frame(day_night = (pc$hour >= 7 & pc$hour <= 17))
dts_best_model_tune <- tune_covlmc(dts, dts_cov)
dts_best_model <- as_covlmc(dts_best_model_tune)
draw(dts_best_model)

Run the code above in your browser using DataLab