Nothing
# A unit test for Acf() function
if (require(testthat)) {
test_that("tests for acf", {
out <- Acf(wineind, lag.max = 10, type = "partial", plot = FALSE)
expect_length(out$lag, 10)
expect_identical(out$acf, Pacf(wineind, lag.max = 10, plot = FALSE)$acf)
expect_equal(dim(Acf(wineind, lag.max = 10, type = "correlation", plot = FALSE)$acf), c(11L, 1L, 1L))
expect_equal(Acf(wineind, lag.max = 10, type = "correlation", plot = TRUE)$acf[1, 1, 1], 1)
})
}
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.