Nothing
test_that("optimal_model_space correctly computes economic_growth_ms", {
skip_on_os(c("windows", "linux"))
skip_on_cran()
set.seed(23)
data_prepared <- bdsm::economic_growth[,1:7] %>%
feature_standardization(timestamp_col = year, entity_col = country) %>%
feature_standardization(timestamp_col = year, entity_col = country,
time_effects = TRUE, scale = FALSE)
model_space <- optimal_model_space(df = data_prepared, dep_var_col = gdp,
timestamp_col = year, entity_col = country,
init_value = 0.5)
expect_equal(model_space, economic_growth_ms)
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.