Nothing
test_that("gibbs_np runs on sample white noise data", {
test_data <- rnorm(100)
test_data <- test_data - mean(test_data)
# just very few steps to make sure that the algorithm runs...
mcmc <- gibbs_np(data=test_data, Ntotal=2000, burnin=100, thin=1)
# ... and produces results (i.e. PSD estimate & log posterior trace)
expect_equal(length(mcmc$lpost), 1900)
expect_false(any(is.na(mcmc$lpost)))
expect_true(length(mcmc$psd.median)>0)
expect_false(all(is.na(mcmc$psd.median)))
})
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.