View source: R/pmcmc_varied_parameter.R
pmcmc_varied_parameter | R Documentation |
Describe a varying parameter for use within the nested pmcmc. Note that
the name is not set here, but will end up being naturally defined
when used with pmcmc_parameters_nested
, which collects
these together for use with pmcmc()
.
pmcmc_varied_parameter(
name,
populations,
initial,
min = -Inf,
max = Inf,
discrete,
integer = FALSE,
prior = NULL
)
name |
Name for the parameter (a string) |
populations |
The name of the populations for which different values
of the parameter are being estimated for, length |
initial |
Initial value(s) for the parameter. Must be either length
|
min |
Optional minimum value(s) for the parameter (otherwise
|
max |
Optional max value for the parameter (otherwise
|
discrete |
Deprecated; use |
integer |
Logical, indicating if this parameter is
integer. If |
prior |
A prior function (if not given an improper flat prior
is used - be careful!). It must be a function that takes a
single argument, being the value of this parameter. If given,
then |
mcstate::pmcmc_varied_parameter(
name = "size",
populations = c("Europe", "America"),
initial = c(100, 200),
min = 0,
max = Inf,
integer = TRUE,
prior = list(dnorm, dexp))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.