-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from weberse2/issue-rel-1-7-1
Release 1.7-1
- Loading branch information
Showing
37 changed files
with
890 additions
and
204 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# ensure that an exisitng user .Rprofile is respected | ||
if(exists("~/.Rprofile")) source("~/.Rprofile") | ||
|
||
# sets up brms caching and use of cmdstanr if available | ||
local({ | ||
if(requireNamespace("cmdstanr", quietly=TRUE)) { | ||
# instruct brms to use cmdstanr as backend and cache all Stan binaries | ||
brms_cache_dir <- Sys.getenv("BRMS_CACHE_DIR", here::here(".brms_cache")) | ||
# create cache directory if not yet available | ||
dir.create(brms_cache_dir, FALSE) | ||
options(brms.backend="cmdstanr", cmdstanr_write_stan_file_dir=brms_cache_dir) | ||
} | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,8 +8,8 @@ Description: Tool-set to support Bayesian evidence synthesis. This | |
for details on applying this package while Neuenschwander et al. (2010) | ||
<doi:10.1177/1740774509356002> and Schmidli et al. (2014) | ||
<doi:10.1111/biom.12242> explain details on the methodology. | ||
Version: 1.7-0 | ||
Date: 2023-07-19 | ||
Version: 1.7-1 | ||
Date: 2023-08-08 | ||
Authors@R: c(person("Novartis", "Pharma AG", role = "cph") | ||
,person("Sebastian", "Weber", email="[email protected]", role=c("aut", "cre")) | ||
,person("Beat", "Neuenschwander", email="[email protected]", role="ctb") | ||
|
@@ -37,7 +37,8 @@ Imports: | |
stats, | ||
utils, | ||
matrixStats, | ||
abind | ||
abind, | ||
rlang | ||
LinkingTo: | ||
BH (>= 1.72.0), | ||
Rcpp (>= 0.12.0), | ||
|
@@ -63,7 +64,10 @@ Suggests: | |
tools, | ||
broom, | ||
tidyr, | ||
parallel | ||
parallel, | ||
brms, | ||
glue, | ||
ragg | ||
VignetteBuilder: knitr | ||
SystemRequirements: GNU make, pandoc (>= 1.12.3), pandoc-citeproc, C++17 | ||
Encoding: UTF-8 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.