Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion UserManual/src/chapter_Laplace.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

```{r, echo=FALSE}
require(nimble)
require(nimbleSMC, quietly = TRUE, warn.conflicts = FALSE)
require(nimbleQuad, quietly = TRUE, warn.conflicts = FALSE)
```

# Laplace, AGHQ, and nested approximations {#cha-laplace}
Expand Down
2 changes: 2 additions & 0 deletions install_requirements.R
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ requirements <- c(
'pracma', ## for AD
'numDeriv', ## for AD
'mcmcse' ## for MCEM
# 'nimbleQuad' ## for laplace for MCEM test
# 'lme4' ## for test-ADlaplace.R
)

Expand All @@ -26,3 +27,4 @@ for (package in requirements) {

install.packages("lme4", type = "source")


8 changes: 4 additions & 4 deletions packages/nimble/DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Authors@R: c(
person("Claudia", "Wehrhahn Cortes", role = "aut", comment = "Bayesian nonparametrics system"),
person("Abel", "Rodr\u00edguez", role = "aut", comment = "Bayesian nonparametrics system"),
person("Duncan", "Temple Lang", role = "aut", comment = "packaging configuration"),
person("Wei", "Zhang", role = "aut", comment = "Laplace approximation"),
person("Wei", "Zhang", role = "aut", comment = "node marginalization"),
person("Sally", "Paganin", role = "aut", comment = "reversible jump MCMC"),
person("Joshua", "Hug", role = "aut", comment = "WAIC"),
person("Paul", "van Dam-Bates", role = "aut", comment = "P\u00f3lya-Gamma sampler, nimIntegrate, matrix exponential"),
Expand Down Expand Up @@ -129,7 +129,6 @@ Collate:
initializeModel.R
parameterTransform.R
CAR.R
Laplace.R
MCMC_utils.R
MCMC_configuration.R
MCMC_build.R
Expand All @@ -144,13 +143,14 @@ Collate:
crossValidation.R
BNP_distributions.R
BNP_samplers.R
setupMargNodes.R
NF_utils.R
miscFunctions.R
normTooling.R
miscAlgorithms.R
makevars.R
setNimbleInternalFunctions.R
registration.R
nimble-package.r
QuadratureGrids.R
miscAlgorithms.R
zzz.R
RoxygenNote: 7.3.2
2 changes: 2 additions & 0 deletions packages/nimble/NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,10 @@ S3method(as.list, modelValuesBaseClass)
S3method(length, nimPointerList)
export(calc_dmnormConjugacyContributions)
export(calc_dmnormAltParams)
export(calc_dmnorm_inv_ld_AltParams)
export(calc_dwishAltParams)
export(calc_dcatConjugacyContributions)
export(PDinverse_logdet)
export(calc_dcar_normalConjugacyContributionShape)
export(calc_dcar_normalConjugacyContributionRate)
export(CAR_calcM)
Expand Down
Loading
Loading