Skip to content

Commit b38d468

Browse files
committed
visual test for mcmc_pairs
1 parent 1416202 commit b38d468

File tree

6 files changed

+3251
-6
lines changed

6 files changed

+3251
-6
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Package: bayesplot
22
Type: Package
33
Title: Plotting for Bayesian Models
44
Version: 1.10.0
5-
Date: 2022-11-13
5+
Date: 2022-11-14
66
Authors@R: c(person("Jonah", "Gabry", role = c("aut", "cre"), email = "[email protected]"),
77
person("Tristan", "Mahr", role = "aut"),
88
person("Paul-Christian", "Bürkner", role = "ctb"),

R/bayesplot-package.R

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -105,10 +105,9 @@ NULL
105105
# release reminders (for devtools)
106106
release_questions <- function() {
107107
c(
108-
"Have you reduced the size of the vignettes for CRAN?"
109-
)
110-
c(
111-
"Have you put '^tests/testthat/_snaps$' in .Rbuildignore?"
108+
"Have you reduced the size of the vignettes for CRAN?",
109+
"Have you tested with '^tests/testthat/_snaps$' removed from .Rbuildignore?",
110+
"Have you put '^tests/testthat/_snaps$' back in .Rbuildignore? before submitting?"
112111
)
113112
}
114113
# nocov end

R/mcmc-scatterplots.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -903,7 +903,7 @@ format_nuts_points <- function(graph, np_args) {
903903
c("NoDiv", "Div", "NoHit", "Hit"))
904904
) +
905905
scale_size_manual(
906-
values = set_names(c(0, rel(np_args$size[["div"]]), 0, rel(np_args$size[["td"]])),
906+
values = set_names(c(NA, rel(np_args$size[["div"]]), NA, rel(np_args$size[["td"]])),
907907
c("NoDiv", "Div", "NoHit", "Hit"))
908908
)
909909
}

0 commit comments

Comments
 (0)