Skip to content

Commit

Permalink
Build documentation and fix some check() problems.
Browse files Browse the repository at this point in the history
  • Loading branch information
sims1253 committed Dec 16, 2024
1 parent 8d5df1f commit 1b81c0b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
4 changes: 2 additions & 2 deletions R/mcmc-traces.R
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ mcmc_rank_overlay <- function(x,
group_by(.data$chain) %>%
mutate(
chain = ifelse(
iteration <= midpoint,
.data$iteration <= midpoint,
paste0(.data$chain, "_1"),
paste0(.data$chain, "_2")
)
Expand Down Expand Up @@ -523,7 +523,7 @@ mcmc_rank_ecdf <-
group_by(.data$chain) %>%
mutate(
chain = ifelse(
iteration <= midpoint,
.data$iteration <= midpoint,
paste0(.data$chain, "_1"),
paste0(.data$chain, "_2")
)
Expand Down
10 changes: 8 additions & 2 deletions man/MCMC-traces.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 1b81c0b

Please sign in to comment.