as_covlmc | R Documentation |
This generic function converts an object into a covlmc.
as_covlmc(x, ...)
## S3 method for class 'tune_covlmc'
as_covlmc(x, ...)
x |
an object to convert into a covlmc. |
... |
additional arguments for conversion functions. |
a covlmc
tune_covlmc()
## 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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.