Skip to content

Commit

Permalink
0.3.8 on CRAN
Browse files Browse the repository at this point in the history
  • Loading branch information
danheck committed Jul 27, 2017
1 parent f45aa4f commit dd5b126
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 11 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Package: metaBMA
Type: Package
Date: 2017-07-26
Title: Bayesian Model Averaging for Random and Fixed Effects Meta-Analysis
Version: 0.3.7
Version: 0.3.8
Authors@R: c(person("Daniel W.","Heck",email="heck@uni-mannheim.de",role=c("aut","cre")),
person("Quentin F.", "Gronau", email="quentingronau@web.de", role = c("ctb")),
person("Eric-Jan", "Wagenmakers", email="ej.wagenmakers@gmail.com", role = c("ctb")))
Expand Down
3 changes: 2 additions & 1 deletion NEWS
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
metaBMA 0.3.7
metaBMA 0.3.8
===========

* Data sets 'power_pose' and 'power_pose_unfamiliar' added
* Data set 'facial_feedback' added
* More informative description file
* Requirements for CRAN


metaBMA 0.3.0
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion R/meta_bma.R
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#' \dontrun{
#' data(towels)
#' mb <- meta_bma(towels$logOR, towels$SE, towels$study,
#' d = "norm", d.par = c(0,.3),
#' d = "norm", d.par = c(0,.3), sample = 10000,
#' tau = "halfcauchy", tau.par = .5)
#' mb
#' plot_posterior(mb, "d")
Expand Down
6 changes: 4 additions & 2 deletions R/meta_default.R
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#' Defaults for Model Averaging in Meta-Analysis
#'
#' Wrapper with default prior for Bayesian meta-analysis based on a literature review.
#' Currently, the same default is used in all cases.
#'
#' @inheritParams meta_bma
#' @param field either\code{"psychology"} or \code{"medicine"}
Expand Down Expand Up @@ -37,12 +38,13 @@
#' \dontrun{
#' data(towels)
#' d1 <- meta_default(towels$logOR, towels$SE, towels$study,
#' field = "psych", effect = "logOR")
#' field = "psych", effect = "logOR",
#' sample = 5000)
#' d1
#' plot_posterior(d1)
#' plot_forest(d1)
#' }
#' @seealso \code{\link{meta_bma}}, \code{\link{plot_default}}
#' @template ref_gronau2017
#' @export
meta_default <- function(y,
SE,
Expand Down
2 changes: 1 addition & 1 deletion R/meta_random.R
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#' data(towels)
#' ### Bayesian Random-Effects Meta-Analysis
#' mr <- meta_random(towels$logOR, towels$SE, towels$study,
#' d = "norm", d.par = c(0,.3),
#' d = "norm", d.par = c(0,.3), sample = 5000,
#' tau = "halfcauchy", tau.par = .5)
#' mr
#' plot_posterior(mr)
Expand Down
2 changes: 1 addition & 1 deletion man/metaBMA-package.Rd

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

2 changes: 1 addition & 1 deletion man/meta_bma.Rd

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

8 changes: 6 additions & 2 deletions man/meta_default.Rd

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

2 changes: 1 addition & 1 deletion man/meta_random.Rd

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

0 comments on commit dd5b126

Please sign in to comment.