run.tfr.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.tfr.mcmc.extra(sim.dir = file.path(getwd(), "bayesTFR.output"),
countries = NULL, my.tfr.file = NULL,
iter = NULL, thin = 1, thin.extra = 1, burnin = 2000,
parallel = FALSE, nr.nodes = NULL, my.locations.file = NULL,
uncertainty = FALSE, my.tfr.raw.file = NULL,
use.wpp.data = TRUE, iso.unbiased = NULL,
covariates = c('source', 'method'), cont_covariates = NULL,
source.col.name = "source", average.gammas.cov = TRUE,
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.tfr.file |
File name containing user-specified TFR time series 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 iterations used in the existing simulation is taken. |
thin |
Thinning interval for sampling from the posterior distribution of the hyperparameters. |
thin.extra |
Thinning interval for the MCMC run for extra countries. |
burnin |
Number of iterations discarded before sampling from the posterior distribution of the hyperparameters. It is also used when computing proposal of gamma covariance matrices (see |
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. |
uncertainty |
Whether past TFR uncertainty is considered. If |
my.tfr.raw.file |
File name of the raw TFR used when uncertainty is |
use.wpp.data |
Logical indicating if default WPP data should be used, i.e. if |
iso.unbiased |
Codes of countries for which the vital registration TFR estimates are considered unbiased. See details in |
covariates , cont_covariates |
Categorical and continuous features used in estimating bias and standard deviation if |
source.col.name |
If |
average.gammas.cov |
Set this to |
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.tfr.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 tfr
dataset. Or, it can be given by a user-specific TFR file, using the argument my.tfr.file
. The countries
argument haas a priority over my.tfr.file
.
In the default case of uncertainty = FALSE
, the function will ignore all countries that were used in the existing MCMC simulation for estimating the hyperparameters. However, countries that already own country-specific parameters (e.g. because they were included in my.tfr.file
passed to run.tfr.mcmc
with include_code = 1
, or from a previous pass of the run.tfr.mcmc.extra
function) get their parameters recomputed. In case of uncertainty = TRUE
, all specified countries, regardless if they were included in the existing world simulation or not, get their parameters recomputed. It is therefore advisable to make a backup copy of the exisiting MCMC simulation, as there is a no easy way to revert the parameters to their original values.
Note that all affected countries should be included in the UNlocations
dataset, but unlike in run.tfr.mcmc
, their include_code
is ignored. As in the case of run.tfr.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 TFR is simulated for new locations that are not included in UNlocations
.
An object of class bayesTFR.mcmc.set
.
If there is an existing projection for the directory sim.dir
, use tfr.predict.extra
to obtain projections for the extra countries used in this function.
Hana Sevcikova, Leontine Alkema, Peiran Liu
run.tfr.mcmc
, tfr.predict.extra
## Not run:
sim.dir <- tempfile()
m <- run.tfr.mcmc(nr.chains = 1, iter = 20, output.dir = sim.dir, verbose = TRUE)
m <- run.tfr.mcmc.extra(sim.dir = sim.dir, countries = c(908, 924),
burnin = 10, verbose = TRUE)
summary(m, country = 924)
pred <- tfr.predict(m, burnin = 10, use.tfr3 = FALSE, verbose = TRUE)
summary(pred, country = 908)
unlink(sim.dir, recursive = TRUE)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.