Displaying 3 results from an estimated 3 matches for "bayesmeta".
2017 Nov 30
0
bayesmeta 2.0 released
Dear R users,
a new version (2.0) of the "bayesmeta" package for Bayesian random-
effects meta-analysis is now available on CRAN; see here:
??http://cran.r-project.org/package=bayesmeta
Along with the package now comes an extensive introduction to the topic
as well as the use of the package (also included as a package
vignette); see here:
??...
2017 Nov 30
0
bayesmeta 2.0 released
Dear R users,
a new version (2.0) of the "bayesmeta" package for Bayesian random-
effects meta-analysis is now available on CRAN; see here:
??http://cran.r-project.org/package=bayesmeta
Along with the package now comes an extensive introduction to the topic
as well as the use of the package (also included as a package
vignette); see here:
??...
2024 Jan 24
0
Quantiles of sums of independent discrete random variables
Greetings,
Minimal reproducible example as requested by the technical expert Jeff Newmiller:
library(bayesmeta)
# density of $(1/10)*\sum_{j=1}{10}N(j,0.01$
# (convex sum of normal distributions)
#
f <- Vectorize(function(s) sum(vapply(1:10,
?? FUN = function(j) dnorm(s,mean=j,sd=0.01)/10, FUN.VALUE=0
)))
g <- function(s) dnorm(s,mean=0,sd=0.01)
cat("\n\n")
for(i in 1:5){
? ?
? cat("...