Nothing
context("Regressions previously observed for ANOHE")
test_that("anohe-breaking.txt does not break summary.mtc.anohe", {
network <- dget("../data/anohe-breaking.txt")
capture.output(anohe <- mtc.anohe(network, n.adapt=200, n.iter=500))
x <- summary(anohe)
expect_true('studyEffects' %in% names(x))
})
test_that("Mixing up the order of treatments does not break summary.mtc.anohe", {
network <- thrombolytic
treatments <- network$treatments
treatments$id <- factor(rev(as.character(treatments$id)), levels=rev(as.character(treatments$id)))
network <- mtc.network(data=network$data.ab, treatments=treatments)
capture.output(anohe <- mtc.anohe(network, n.adapt=200, n.iter=500))
x <- summary(anohe)
expect_true('studyEffects' %in% names(x))
})
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.