run.e0.mcmc.extra | R Documentation |
Run MCMC for extra countries, areas or regions. It uses the posterior distribution of model hyperparameters from an existing simulation to generate country-specific parameters.
run.e0.mcmc.extra(sim.dir = file.path(getwd(), "bayesLife.output"),
countries = NULL, my.e0.file = NULL,
iter = NULL, thin = 1, burnin = 0,
parallel = FALSE, nr.nodes = NULL, my.locations.file = NULL,
country.overwrites = NULL, verbose = FALSE, verbose.iter = 100, ...)
sim.dir |
Directory with an existing simulation. |
countries |
Vector of country codes. These include codes of areas and regions (see column |
my.e0.file |
File name containing user-specified time series of life expectancy for countries for which the simulation should run (see Details below). |
iter |
Number of iterations to be used for sampling from the posterior distribution of the hyperparameters. By default, the number of (possibly thinned) iterations used in the existing simulation is taken. |
thin |
Thinning interval for sampling from the posterior distribution of the hyperparameters. |
burnin |
Number of iterations discarded before sampling from the posterior distribution of the hyperparameters. |
parallel |
Logical determining if the simulation should run multiple chains in parallel. |
nr.nodes |
Relevant only if |
my.locations.file |
File name containing user-specified locations. See Details below. |
country.overwrites |
This argument allows to overwrite some of the prior parameters for specific countries, stored in the global option of the same name, see |
verbose |
Logical switching log messages on and off. |
verbose.iter |
Integer determining how often (in number of iterations) log messages are outputted during the estimation. |
... |
Additional parameters to be passed to the function |
The function can be used to make predictions for countries, areas or regions (further denoted as ‘countries’) that were not included in the MCMC estimation (invoked by run.e0.mcmc
). It creates MCMC traces for country-specific parameters. The purpose of this function is to have country-specific parameters available in order to be able to generate projections for additional countries or their aggregations, without having to re-run the often time-expensive MCMC simulation.
The set of countries to be considered by this function can be given either by their codes, using the argument countries
, in which case the countries must be included in the UN WPP e0
dataset. Or, it can be given by a user-specific file, using the argument my.e0.file
. The function considers a union of both arguments. The function will ignore all countries that were used in the existing MCMC simulation for estimating the hyperparameters. Countries that already own country-specific parameters (e.g. because they were included in my.e0.file
passed to run.e0.mcmc
) get their parameters recomputed. Note that all countries must be included in the UNlocations
dataset, but unlike in run.e0.mcmc
, their include_code
is ignored. As in the case of run.e0.mcmc
, the default dataset of locations UNlocations
can be overwritten using a file of the same structure as UNlocations
passed via the my.locations.file
argument. This file should be especially used, if e0 is simulated for new locations that are not included in UNlocations
.
An object of class bayesLife.mcmc.set
.
If there is an existing projection for the directory sim.dir
, use e0.predict.extra
to obtain projections for the extra countries used in this function.
Hana Sevcikova
run.e0.mcmc
, e0.predict.extra
## Not run:
m <- run.e0.mcmc(nr.chains = 1, iter = 20, thin = 1, verbose = TRUE)
m <- run.e0.mcmc.extra(countries = c(908,924), burnin = 10, verbose = TRUE)
summary(m, country = 924)
pred <- e0.predict(burnin = 10, verbose = TRUE)
summary(pred, country = 908)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.