Skip to content

Commit af1a55c

Browse files
authored
Merge pull request #442 from ishaan-arora-1/fix/deprecated-formula-aes-441
Fix deprecated formula syntax in aes() call
2 parents c817061 + 8345f96 commit af1a55c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

R/mcmc-distributions.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -489,7 +489,7 @@ mcmc_dots_by_chain <- function(
489489
data <- melt_mcmc(x, value.name = "value")
490490
n_param <- num_params(data)
491491

492-
graph <- ggplot(data, aes(x = ~ value)) +
492+
graph <- ggplot(data, aes(x = .data$value)) +
493493
geom_histogram(
494494
set_hist_aes(freq),
495495
fill = get_color("mid"),

0 commit comments

Comments
 (0)