Nothing
if(require(testthat)){
test_that("tests for some arguments in ARml", {
fit <- ARml(AirPassengers, caret_method = "lm", max_lag = 10)
fc <- forecast(fit, h = 1)
res <- residuals(fit)
conf_reg <- conformalRegressor(res)
conf_pred <- predict(conf_reg, y_hat = fc$mean, confidence = 0.9)
conf_pred <- mean(unlist(conf_pred))
expect_equal(conf_pred, 446.7539, tolerance = 5)
})
}
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.