Skip to content

Commit bbbc1a1

Browse files
committed
get latest master
Merge branch 'master' of https://github.com/stan-dev/bayesplot into vdiffs # Conflicts: # tests/testthat/test-ppc-distributions.R
2 parents 87d78c8 + d88bf97 commit bbbc1a1

File tree

123 files changed

+10448
-2473
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

123 files changed

+10448
-2473
lines changed

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@ r:
55
cache: packages
66

77
r_github_packages:
8-
- hadley/testthat
9-
- jimhester/covr
8+
- r-lib/covr
109

1110
after_success:
1211
- Rscript -e 'covr::codecov()'

DESCRIPTION

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
Package: bayesplot
22
Type: Package
33
Title: Plotting for Bayesian Models
4-
Version: 1.4.0.9000
5-
Date: 2017-09-09
4+
Version: 1.6.0.9000
5+
Date: 2018-08-01
66
Authors@R: c(person("Jonah", "Gabry", role = c("aut", "cre"), email = "[email protected]"),
77
person("Tristan", "Mahr", role = "aut"),
8-
person("Paul-Christian", "Buerkner", role = "ctb"))
8+
person("Paul-Christian", "Bürkner", role = "ctb"),
9+
person("Martin", "Modrák", role = "ctb"),
10+
person("Malcolm", "Barrett", role = "ctb"))
911
Maintainer: Jonah Gabry <[email protected]>
1012
Description: Plotting functions for posterior analysis, model checking,
1113
and MCMC diagnostics. The package is designed not only to provide convenient
@@ -16,7 +18,7 @@ License: GPL (>= 3)
1618
LazyData: TRUE
1719
URL: http://mc-stan.org/bayesplot
1820
BugReports: https://github.com/stan-dev/bayesplot/issues/
19-
SystemRequirements: pandoc
21+
SystemRequirements: pandoc (>= 1.12.3), pandoc-citeproc
2022
Depends:
2123
R (>= 3.1.0)
2224
Imports:
@@ -31,15 +33,15 @@ Suggests:
3133
arm,
3234
gridExtra (>= 2.2.1),
3335
knitr (>= 1.16),
34-
loo (>= 1.1.0),
36+
loo (>= 2.0.0),
3537
rmarkdown (>= 1.0.0),
36-
rstan (>= 2.14.1),
37-
rstanarm (>= 2.14.1),
38-
rstantools (>= 1.2.0),
38+
rstan (>= 2.17.1),
39+
rstanarm (>= 2.17.4),
40+
rstantools (>= 1.5.0),
3941
scales,
4042
shinystan (>= 2.3.0),
41-
testthat,
43+
testthat (>= 2.0.0),
4244
vdiffr
43-
RoxygenNote: 6.0.1
45+
RoxygenNote: 6.1.1
4446
VignetteBuilder: knitr
4547
Encoding: UTF-8

NAMESPACE

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ export(abline_01)
2121
export(available_mcmc)
2222
export(available_ppc)
2323
export(bayesplot_grid)
24+
export(bayesplot_theme_get)
25+
export(bayesplot_theme_replace)
26+
export(bayesplot_theme_set)
27+
export(bayesplot_theme_update)
2428
export(color_scheme_get)
2529
export(color_scheme_set)
2630
export(color_scheme_view)
@@ -88,6 +92,7 @@ export(pp_check)
8892
export(ppc_bars)
8993
export(ppc_bars_grouped)
9094
export(ppc_boxplot)
95+
export(ppc_data)
9196
export(ppc_dens)
9297
export(ppc_dens_overlay)
9398
export(ppc_ecdf_overlay)
@@ -105,6 +110,8 @@ export(ppc_intervals_data)
105110
export(ppc_intervals_grouped)
106111
export(ppc_loo_intervals)
107112
export(ppc_loo_pit)
113+
export(ppc_loo_pit_overlay)
114+
export(ppc_loo_pit_qq)
108115
export(ppc_loo_ribbon)
109116
export(ppc_ribbon)
110117
export(ppc_ribbon_data)
@@ -148,5 +155,6 @@ importFrom(dplyr,select)
148155
importFrom(dplyr,summarise)
149156
importFrom(dplyr,top_n)
150157
importFrom(dplyr,ungroup)
158+
importFrom(ggplot2,"%+replace%")
151159
importFrom(ggridges,geom_density_ridges)
152160
importFrom(ggridges,geom_density_ridges2)

0 commit comments

Comments
 (0)