tests/testthat/test_plot_query.R

context(desc = "Testing plot_model_query")

testthat::skip_on_cran()



testthat::test_that(
  desc = "Testing plot query",
  code = {
    model <- make_model("X -> Y")
    q <- query_model(model, c("Y[X=1] - Y[X=0]", "Y[X=1] > Y[X=0]"),
                     given = c("Y==1", TRUE),
                     using = c("priors", "parameters"),
                     expand_grid = TRUE)
    pdf(file = NULL)
    expect_silent(plot(q))
    dev.off()

    q <- query_model(model, c("Y[X=1] - Y[X=0]", "Y[X=1] > Y[X=0]"),
                     given = c("Y==1", TRUE),
                     using = c("priors", "parameters"),
                     labels = LETTERS[1:8],
                     expand_grid = TRUE)
    pdf(file = NULL)
    expect_silent(plot(q))
    dev.off()


  })

Try the CausalQueries package in your browser

Any scripts or data that you put into this service are public.

CausalQueries documentation built on April 3, 2025, 7:46 p.m.