TS_control {LDATS} | R Documentation |
Create the controls list for the Time Series model
Description
This function provides a simple creation and definition of a
list used to control the time series model fit occurring within
TS
.
Usage
TS_control(
memoise = TRUE,
response = "gamma",
lambda = 0,
measurer = AIC,
selector = min,
ntemps = 6,
penultimate_temp = 2^6,
ultimate_temp = 1e+10,
q = 0,
nit = 10000,
magnitude = 12,
quiet = FALSE,
burnin = 0,
thin_frac = 1,
summary_prob = 0.95,
seed = NULL
)
Arguments
memoise |
|
response |
|
lambda |
|
measurer , selector |
Function names for use in evaluation of the TS
models. |
ntemps |
|
penultimate_temp |
Penultimate temperature in the ptMCMC sequence. |
ultimate_temp |
Ultimate temperature in the ptMCMC sequence. |
q |
Exponent controlling the ptMCMC temperature sequence from the focal chain (reference with temperature = 1) to the penultimate chain. 0 (default) implies a geometric sequence. 1 implies squaring before exponentiating. |
nit |
|
magnitude |
Average magnitude (defining a geometric distribution) for the proposed step size in the ptMCMC algorithm. |
quiet |
|
burnin |
|
thin_frac |
Fraction of iterations to retain, must be |
summary_prob |
Probability used for summarizing the posterior
distributions (via the highest posterior density interval, see
|
seed |
Input to |
Value
list
, with named elements corresponding to the arguments.
Examples
TS_control()