gnu: Add r-mcmcpack.

* gnu/packages/cran.scm (r-mcmcpack): New variable.

Co-authored-by: Marcel Schilling <marcel.schilling@uni-luebeck.de>
This commit is contained in:
Ricardo Wurmus 2021-07-01 16:04:01 +02:00
parent 7e2e14b866
commit 26117c6046
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -17933,6 +17933,38 @@ (define-public r-text2vec
multicore machines.")
(license license:gpl2+)))
(define-public r-mcmcpack
(package
(name "r-mcmcpack")
(version "1.5-0")
(source
(origin
(method url-fetch)
(uri (cran-uri "MCMCpack" version))
(sha256
(base32
"1khavqsimiwbfq7gyw5jyj67jxfd579pnc7mngnd655zc8yzspvr"))))
(properties `((upstream-name . "MCMCpack")))
(build-system r-build-system)
(propagated-inputs
`(("r-coda" ,r-coda)
("r-lattice" ,r-lattice)
("r-mass" ,r-mass)
("r-mcmc" ,r-mcmc)
("r-quantreg" ,r-quantreg)))
(home-page "https://cran.r-project.org/package=MCMCpack")
(synopsis "Markov Chain Monte Carlo (MCMC) package")
(description
"This package contains functions to perform Bayesian inference using
posterior simulation for a number of statistical models. Most simulation is
done in compiled C++ written in the Scythe Statistical Library. All models
return @code{coda} @code{mcmc} objects that can then be summarized using the
@code{coda} package. Some useful utility functions such as density functions,
pseudo-random number generators for statistical distributions, a general
purpose Metropolis sampling algorithm, and tools for visualization are
provided.")
(license license:gpl3)))
(define-public r-xmlparsedata
(package
(name "r-xmlparsedata")