idem: Inference in Randomized Controlled Trials with Death and Missingness

Chenguang Wang

2023-08-07

## Loading required package: idem
## Loading required package: Rcpp

Introduction

In randomized studies involving severely ill patients, functional outcomes are often unobserved due to missed clinic visits, premature withdrawal or death. It is well known that if these unobserved functional outcomes are not handled properly, biased treatment comparisons can be produced.

R package idem implement a procedure for comparing treatments that is based on the composite endpoint of both the functional outcome and survival. The procedure considers missing data imputation with a sensitivity analysis strategy to handle the unobserved functional outcomes not due to death.

Data accepted by idem

In dataset accepted by idem, each row should represent a subject with treatment assignment, baseline coveraites, baseline outcome, post-randomization outcomes and survival time.

The idem package provides dataset abc from ABC trial as an example data set.

head(abc);
##     AGE TRT SURV Y1 Y2
## 1 59.63   1  999 NA NA
## 2 66.89   0  999 49 52
## 3 59.70   1    1 NA NA
## 4 81.41   0   72 NA NA
## 5 66.52   1  999 51 45
## 6 40.27   0   65 NA NA

Basic steps

There are four major steps in conducting imputation and inference using idem. First, a class IDEMDATA object should be generated by the function imData. Second, the imputation models will be fit to the data observed from the completers by the function imFitModel. Third, imputation can be conducted by the function imImpAll. Lastly, treatment effect estimation and hypothesis testing can be performed by function imInfer.

Data generalization and visualization

In this step, the original dataset with specification parameters will be combined and checked. These parameters include variable names in the dataset, endpoint specification, duration of the study, etc.. If there is mis-specification, error messages will be generated. Otherwise, a class IDEMDATA object will be generated with certain data visulation functions implemented as its S3 methods.

rst.data <- imData(abc, trt="TRT", outcome=c("Y1","Y2"), y0=NULL,
                   endfml="Y3", bounds=c(10,20), duration=365,
                   err.terminate = FALSE);
print(rst.data);
## Model specification is invalid. Please check the following:
##     No survival time specified
##     Endpoint formula error: Error in eval(substitute(expr), data, enclos = parent.frame()) :   object 'Y3' not found
##     Upper bound is smaller than some observed outcomes
rst.data <- imData(abc, trt="TRT", surv="SURV", outcome=c("Y1","Y2"),
                   y0=NULL, endfml="Y2",
                   trt.label = c("UC+SBT", "SAT+SBT"),
                   cov=c("AGE"), duration=365, bounds=c(0,100));

The class IDEMDATA provides S3 plot and summary methods with multiple options for the visualization of the data.

Spaghetti plot for survivors

plot(rst.data, opt = "survivor");

Missing pattern frequency table

summary(rst.data, opt = "misstable");
##                       Y1       Y2   UC.SBT  SAT.SBT
## Deaths on study                   58 (62%) 38 (41%)
## S=1             Observed Observed 18 (19%) 32 (34%)
## S=2             Observed  Missing   8 (9%)   8 (9%)
## S=3              Missing Observed   1 (1%)   0 (0%)
## S=4              Missing  Missing  9 (10%) 15 (16%)
## Total                                   94       93

Missing pattern heatmap

plot(rst.data, opt = "missing", cols = c("blue", "gray"));

Kaplan-Meier curves

plot(rst.data, opt = "KM");

Missing data imputation

Model fitting

To fit the imputation model to data observed from the completers, i.e. the subjects who were alive at the end of the study without missing data, the class IDEMDATA object needs to be passed to the function imFitModel as parameters. The result has class name IDEMFIT, which will be passed to imputation functions.

rst.fit <- imFitModel(rst.data);

The goodness of fit diagnostics plots can be generated by the S3 plot method implemented for class IDEMFIT:

plot(rst.fit, mfrow=c(2,4));

Check convergence

The MCMC sampling is primarily done by rstan. It is suggested that the convergence of the MCMC chains should be checked. This can be done by the imImpSingle function which imputes missing data for an individual subject under the benchmark assumption.

rst.mixing <- imImpSingle(abc[1,], rst.fit, chains = 4, iter = 2000, warmup = 1000);
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 1.7e-05 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.17 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: Iteration:    1 / 2000 [  0%]  (Warmup)
## Chain 1: Iteration:  200 / 2000 [ 10%]  (Warmup)
## Chain 1: Iteration:  400 / 2000 [ 20%]  (Warmup)
## Chain 1: Iteration:  600 / 2000 [ 30%]  (Warmup)
## Chain 1: Iteration:  800 / 2000 [ 40%]  (Warmup)
## Chain 1: Iteration: 1000 / 2000 [ 50%]  (Warmup)
## Chain 1: Iteration: 1001 / 2000 [ 50%]  (Sampling)
## Chain 1: Iteration: 1200 / 2000 [ 60%]  (Sampling)
## Chain 1: Iteration: 1400 / 2000 [ 70%]  (Sampling)
## Chain 1: Iteration: 1600 / 2000 [ 80%]  (Sampling)
## Chain 1: Iteration: 1800 / 2000 [ 90%]  (Sampling)
## Chain 1: Iteration: 2000 / 2000 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.02076 seconds (Warm-up)
## Chain 1:                0.022251 seconds (Sampling)
## Chain 1:                0.043011 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 6e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: Iteration:    1 / 2000 [  0%]  (Warmup)
## Chain 2: Iteration:  200 / 2000 [ 10%]  (Warmup)
## Chain 2: Iteration:  400 / 2000 [ 20%]  (Warmup)
## Chain 2: Iteration:  600 / 2000 [ 30%]  (Warmup)
## Chain 2: Iteration:  800 / 2000 [ 40%]  (Warmup)
## Chain 2: Iteration: 1000 / 2000 [ 50%]  (Warmup)
## Chain 2: Iteration: 1001 / 2000 [ 50%]  (Sampling)
## Chain 2: Iteration: 1200 / 2000 [ 60%]  (Sampling)
## Chain 2: Iteration: 1400 / 2000 [ 70%]  (Sampling)
## Chain 2: Iteration: 1600 / 2000 [ 80%]  (Sampling)
## Chain 2: Iteration: 1800 / 2000 [ 90%]  (Sampling)
## Chain 2: Iteration: 2000 / 2000 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.021165 seconds (Warm-up)
## Chain 2:                0.021252 seconds (Sampling)
## Chain 2:                0.042417 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 5e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: Iteration:    1 / 2000 [  0%]  (Warmup)
## Chain 3: Iteration:  200 / 2000 [ 10%]  (Warmup)
## Chain 3: Iteration:  400 / 2000 [ 20%]  (Warmup)
## Chain 3: Iteration:  600 / 2000 [ 30%]  (Warmup)
## Chain 3: Iteration:  800 / 2000 [ 40%]  (Warmup)
## Chain 3: Iteration: 1000 / 2000 [ 50%]  (Warmup)
## Chain 3: Iteration: 1001 / 2000 [ 50%]  (Sampling)
## Chain 3: Iteration: 1200 / 2000 [ 60%]  (Sampling)
## Chain 3: Iteration: 1400 / 2000 [ 70%]  (Sampling)
## Chain 3: Iteration: 1600 / 2000 [ 80%]  (Sampling)
## Chain 3: Iteration: 1800 / 2000 [ 90%]  (Sampling)
## Chain 3: Iteration: 2000 / 2000 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.02351 seconds (Warm-up)
## Chain 3:                0.021183 seconds (Sampling)
## Chain 3:                0.044693 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 6e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: Iteration:    1 / 2000 [  0%]  (Warmup)
## Chain 4: Iteration:  200 / 2000 [ 10%]  (Warmup)
## Chain 4: Iteration:  400 / 2000 [ 20%]  (Warmup)
## Chain 4: Iteration:  600 / 2000 [ 30%]  (Warmup)
## Chain 4: Iteration:  800 / 2000 [ 40%]  (Warmup)
## Chain 4: Iteration: 1000 / 2000 [ 50%]  (Warmup)
## Chain 4: Iteration: 1001 / 2000 [ 50%]  (Sampling)
## Chain 4: Iteration: 1200 / 2000 [ 60%]  (Sampling)
## Chain 4: Iteration: 1400 / 2000 [ 70%]  (Sampling)
## Chain 4: Iteration: 1600 / 2000 [ 80%]  (Sampling)
## Chain 4: Iteration: 1800 / 2000 [ 90%]  (Sampling)
## Chain 4: Iteration: 2000 / 2000 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.023157 seconds (Warm-up)
## Chain 4:                0.024689 seconds (Sampling)
## Chain 4:                0.047846 seconds (Total)
## Chain 4:
plot(rst.mixing);

Imputation

The following code shows how to use imImpAll to get the imputed complete datasets under benchmark assmption delta=0 and for sensitivity analysis. We use 300 iterations to reduce the computation time.

rst.imp <- imImpAll(rst.fit, deltas=c(-0.25,0,0.25),
                    normal=TRUE, chains = 4, iter = 300, warmup = 100);
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## Warning: The largest R-hat is 1.06, indicating chains have not mixed.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#r-hat
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
rst.imp

Plot denisity of the imputed data

The result from imIMPALL is class IDEMFIT. Density plots the imputed outcomes and the imputed functional endpoint can be generated by the S3 plot method associated with class IDEMFIT.

plot(rst.imp, opt = "imputed", deltas = c(-0.25,0,0.25), xlim=c(0,100), endp=FALSE);

plot(rst.imp, opt = "imputed", deltas = c(-0.25,0,0.25), xlim=c(0,100), endp=TRUE);

Composite endpoint analysis

Plot the cumulative distribution of the compositve endpoint

Treatment-specific cumulative distribution functions of the composite endpoint, where the values of the composite endpoint are labeled according to the survival time and functional endpoint among survivors, can be plotted by the S3 plot method of class IDEMFIT.

plot(rst.imp, delta=0);

Inference

The function imInfer implements bootstrap analysis for hypothesis testing, point estimation and confidence intervals of the treatment effects.

For illustration, we run 2 bootstrap samples by the following code:

rst.test <- imInfer(rst.imp, n.boot = 2);
## ---- Bootstrap 1 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 1e-05 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.1 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002346 seconds (Warm-up)
## Chain 1:                0.003071 seconds (Sampling)
## Chain 1:                0.005417 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 5e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.001607 seconds (Warm-up)
## Chain 2:                0.003581 seconds (Sampling)
## Chain 2:                0.005188 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 5e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.001733 seconds (Warm-up)
## Chain 3:                0.00377 seconds (Sampling)
## Chain 3:                0.005503 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 5e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.001288 seconds (Warm-up)
## Chain 4:                0.004378 seconds (Sampling)
## Chain 4:                0.005666 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess
## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 8 : 1 out of 35 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 8e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.08 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001575 seconds (Warm-up)
## Chain 1:                0.003257 seconds (Sampling)
## Chain 1:                0.004832 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 5e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.0016 seconds (Warm-up)
## Chain 2:                0.003316 seconds (Sampling)
## Chain 2:                0.004916 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 5e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.001415 seconds (Warm-up)
## Chain 3:                0.003471 seconds (Sampling)
## Chain 3:                0.004886 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 5e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.001793 seconds (Warm-up)
## Chain 4:                0.00356 seconds (Sampling)
## Chain 4:                0.005353 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 9 : 2 out of 35 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 1.1e-05 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.11 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001582 seconds (Warm-up)
## Chain 1:                0.00311 seconds (Sampling)
## Chain 1:                0.004692 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 3e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.03 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.001941 seconds (Warm-up)
## Chain 2:                0.002887 seconds (Sampling)
## Chain 2:                0.004828 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 5e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.001477 seconds (Warm-up)
## Chain 3:                0.003224 seconds (Sampling)
## Chain 3:                0.004701 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 6e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.001608 seconds (Warm-up)
## Chain 4:                0.002898 seconds (Sampling)
## Chain 4:                0.004506 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 12 : 3 out of 35 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 5e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003439 seconds (Warm-up)
## Chain 1:                0.005605 seconds (Sampling)
## Chain 1:                0.009044 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 4e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.003977 seconds (Warm-up)
## Chain 2:                0.006171 seconds (Sampling)
## Chain 2:                0.010148 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 5e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.00311 seconds (Warm-up)
## Chain 3:                0.005622 seconds (Sampling)
## Chain 3:                0.008732 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 5e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.003853 seconds (Warm-up)
## Chain 4:                0.007031 seconds (Sampling)
## Chain 4:                0.010884 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 15 : 4 out of 35 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 6e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001444 seconds (Warm-up)
## Chain 1:                0.002731 seconds (Sampling)
## Chain 1:                0.004175 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 5e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.001454 seconds (Warm-up)
## Chain 2:                0.002847 seconds (Sampling)
## Chain 2:                0.004301 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 7e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.07 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.001403 seconds (Warm-up)
## Chain 3:                0.003333 seconds (Sampling)
## Chain 3:                0.004736 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 5e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.00158 seconds (Warm-up)
## Chain 4:                0.003195 seconds (Sampling)
## Chain 4:                0.004775 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 22 : 5 out of 35 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 6e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001536 seconds (Warm-up)
## Chain 1:                0.002881 seconds (Sampling)
## Chain 1:                0.004417 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 5e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.001374 seconds (Warm-up)
## Chain 2:                0.00325 seconds (Sampling)
## Chain 2:                0.004624 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 5e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.001643 seconds (Warm-up)
## Chain 3:                0.002824 seconds (Sampling)
## Chain 3:                0.004467 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 8e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.08 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.001634 seconds (Warm-up)
## Chain 4:                0.003325 seconds (Sampling)
## Chain 4:                0.004959 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 33 : 6 out of 35 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 1.7e-05 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.17 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003075 seconds (Warm-up)
## Chain 1:                0.007002 seconds (Sampling)
## Chain 1:                0.010077 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 4e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.003679 seconds (Warm-up)
## Chain 2:                0.007314 seconds (Sampling)
## Chain 2:                0.010993 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 4e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.003409 seconds (Warm-up)
## Chain 3:                0.007417 seconds (Sampling)
## Chain 3:                0.010826 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 4e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.003876 seconds (Warm-up)
## Chain 4:                0.006886 seconds (Sampling)
## Chain 4:                0.010762 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 40 : 7 out of 35 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 6e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002059 seconds (Warm-up)
## Chain 1:                0.002928 seconds (Sampling)
## Chain 1:                0.004987 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 6e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.001411 seconds (Warm-up)
## Chain 2:                0.00328 seconds (Sampling)
## Chain 2:                0.004691 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 5e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.001434 seconds (Warm-up)
## Chain 3:                0.003819 seconds (Sampling)
## Chain 3:                0.005253 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 5e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.001417 seconds (Warm-up)
## Chain 4:                0.002963 seconds (Sampling)
## Chain 4:                0.00438 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 42 : 8 out of 35 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 7e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.07 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003778 seconds (Warm-up)
## Chain 1:                0.007788 seconds (Sampling)
## Chain 1:                0.011566 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 5e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.003637 seconds (Warm-up)
## Chain 2:                0.006042 seconds (Sampling)
## Chain 2:                0.009679 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1.4e-05 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.14 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.003459 seconds (Warm-up)
## Chain 3:                0.006794 seconds (Sampling)
## Chain 3:                0.010253 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 4e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.004013 seconds (Warm-up)
## Chain 4:                0.006197 seconds (Sampling)
## Chain 4:                0.01021 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 43 : 9 out of 35 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 8e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.08 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004858 seconds (Warm-up)
## Chain 1:                0.008594 seconds (Sampling)
## Chain 1:                0.013452 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 8e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.08 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.00559 seconds (Warm-up)
## Chain 2:                0.009136 seconds (Sampling)
## Chain 2:                0.014726 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 5e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.003024 seconds (Warm-up)
## Chain 3:                0.006949 seconds (Sampling)
## Chain 3:                0.009973 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 5e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.004466 seconds (Warm-up)
## Chain 4:                0.007486 seconds (Sampling)
## Chain 4:                0.011952 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 47 : 10 out of 35 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 6e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004222 seconds (Warm-up)
## Chain 1:                0.007108 seconds (Sampling)
## Chain 1:                0.01133 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 6e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.003307 seconds (Warm-up)
## Chain 2:                0.007704 seconds (Sampling)
## Chain 2:                0.011011 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 6e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.002718 seconds (Warm-up)
## Chain 3:                0.006864 seconds (Sampling)
## Chain 3:                0.009582 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 6e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.003298 seconds (Warm-up)
## Chain 4:                0.007808 seconds (Sampling)
## Chain 4:                0.011106 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 49 : 11 out of 35 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 7e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.07 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.0031 seconds (Warm-up)
## Chain 1:                0.006314 seconds (Sampling)
## Chain 1:                0.009414 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 5e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.003462 seconds (Warm-up)
## Chain 2:                0.006614 seconds (Sampling)
## Chain 2:                0.010076 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 5e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.003501 seconds (Warm-up)
## Chain 3:                0.006841 seconds (Sampling)
## Chain 3:                0.010342 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 5e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.003577 seconds (Warm-up)
## Chain 4:                0.006128 seconds (Sampling)
## Chain 4:                0.009705 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 54 : 12 out of 35 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 7e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.07 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002294 seconds (Warm-up)
## Chain 1:                0.003276 seconds (Sampling)
## Chain 1:                0.00557 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 5e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.001952 seconds (Warm-up)
## Chain 2:                0.00392 seconds (Sampling)
## Chain 2:                0.005872 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 6e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.002372 seconds (Warm-up)
## Chain 3:                0.003426 seconds (Sampling)
## Chain 3:                0.005798 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 5e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.001648 seconds (Warm-up)
## Chain 4:                0.004216 seconds (Sampling)
## Chain 4:                0.005864 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 60 : 13 out of 35 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 7e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.07 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003511 seconds (Warm-up)
## Chain 1:                0.007394 seconds (Sampling)
## Chain 1:                0.010905 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 5e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.003652 seconds (Warm-up)
## Chain 2:                0.007011 seconds (Sampling)
## Chain 2:                0.010663 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 7e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.07 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.003521 seconds (Warm-up)
## Chain 3:                0.007955 seconds (Sampling)
## Chain 3:                0.011476 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 5e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.003989 seconds (Warm-up)
## Chain 4:                0.007011 seconds (Sampling)
## Chain 4:                0.011 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 75 : 14 out of 35 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 5e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002018 seconds (Warm-up)
## Chain 1:                0.00339 seconds (Sampling)
## Chain 1:                0.005408 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 7e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.07 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.002026 seconds (Warm-up)
## Chain 2:                0.003608 seconds (Sampling)
## Chain 2:                0.005634 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 5e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.002971 seconds (Warm-up)
## Chain 3:                0.005325 seconds (Sampling)
## Chain 3:                0.008296 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 7e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.07 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.002237 seconds (Warm-up)
## Chain 4:                0.004678 seconds (Sampling)
## Chain 4:                0.006915 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 76 : 15 out of 35 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 1e-05 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.1 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004994 seconds (Warm-up)
## Chain 1:                0.009516 seconds (Sampling)
## Chain 1:                0.01451 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 5e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.004317 seconds (Warm-up)
## Chain 2:                0.008599 seconds (Sampling)
## Chain 2:                0.012916 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 5e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.006187 seconds (Warm-up)
## Chain 3:                0.008955 seconds (Sampling)
## Chain 3:                0.015142 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 4e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.003463 seconds (Warm-up)
## Chain 4:                0.00691 seconds (Sampling)
## Chain 4:                0.010373 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 81 : 16 out of 35 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 7e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.07 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003893 seconds (Warm-up)
## Chain 1:                0.005821 seconds (Sampling)
## Chain 1:                0.009714 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 5e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.003017 seconds (Warm-up)
## Chain 2:                0.006567 seconds (Sampling)
## Chain 2:                0.009584 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 4e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.003568 seconds (Warm-up)
## Chain 3:                0.006267 seconds (Sampling)
## Chain 3:                0.009835 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 5e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.003014 seconds (Warm-up)
## Chain 4:                0.006467 seconds (Sampling)
## Chain 4:                0.009481 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 83 : 17 out of 35 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 1.5e-05 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.15 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003947 seconds (Warm-up)
## Chain 1:                0.006853 seconds (Sampling)
## Chain 1:                0.0108 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 4e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.003713 seconds (Warm-up)
## Chain 2:                0.007375 seconds (Sampling)
## Chain 2:                0.011088 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 5e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.004027 seconds (Warm-up)
## Chain 3:                0.00626 seconds (Sampling)
## Chain 3:                0.010287 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 4e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.00354 seconds (Warm-up)
## Chain 4:                0.007225 seconds (Sampling)
## Chain 4:                0.010765 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 86 : 18 out of 35 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 6e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004381 seconds (Warm-up)
## Chain 1:                0.007155 seconds (Sampling)
## Chain 1:                0.011536 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 5e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.003877 seconds (Warm-up)
## Chain 2:                0.007662 seconds (Sampling)
## Chain 2:                0.011539 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 6e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.003719 seconds (Warm-up)
## Chain 3:                0.00707 seconds (Sampling)
## Chain 3:                0.010789 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 8e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.08 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.004107 seconds (Warm-up)
## Chain 4:                0.007222 seconds (Sampling)
## Chain 4:                0.011329 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 90 : 19 out of 35 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 8e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.08 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.0042 seconds (Warm-up)
## Chain 1:                0.008679 seconds (Sampling)
## Chain 1:                0.012879 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 6e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.003871 seconds (Warm-up)
## Chain 2:                0.008014 seconds (Sampling)
## Chain 2:                0.011885 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 5e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.003041 seconds (Warm-up)
## Chain 3:                0.006312 seconds (Sampling)
## Chain 3:                0.009353 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 6e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.003062 seconds (Warm-up)
## Chain 4:                0.006598 seconds (Sampling)
## Chain 4:                0.00966 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 92 : 20 out of 35 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 6e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001553 seconds (Warm-up)
## Chain 1:                0.003076 seconds (Sampling)
## Chain 1:                0.004629 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 5e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.001576 seconds (Warm-up)
## Chain 2:                0.002966 seconds (Sampling)
## Chain 2:                0.004542 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 4e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.001597 seconds (Warm-up)
## Chain 3:                0.003106 seconds (Sampling)
## Chain 3:                0.004703 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 5e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.001575 seconds (Warm-up)
## Chain 4:                0.003135 seconds (Sampling)
## Chain 4:                0.00471 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 103 : 21 out of 35 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 7e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.07 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002092 seconds (Warm-up)
## Chain 1:                0.003011 seconds (Sampling)
## Chain 1:                0.005103 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 5e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.001636 seconds (Warm-up)
## Chain 2:                0.003116 seconds (Sampling)
## Chain 2:                0.004752 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 6e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.001585 seconds (Warm-up)
## Chain 3:                0.002988 seconds (Sampling)
## Chain 3:                0.004573 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 5e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.00146 seconds (Warm-up)
## Chain 4:                0.003157 seconds (Sampling)
## Chain 4:                0.004617 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 105 : 22 out of 35 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 7e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.07 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002769 seconds (Warm-up)
## Chain 1:                0.005663 seconds (Sampling)
## Chain 1:                0.008432 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 5e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.00261 seconds (Warm-up)
## Chain 2:                0.011456 seconds (Sampling)
## Chain 2:                0.014066 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 6e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.002588 seconds (Warm-up)
## Chain 3:                0.004703 seconds (Sampling)
## Chain 3:                0.007291 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 5e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.002706 seconds (Warm-up)
## Chain 4:                0.005105 seconds (Sampling)
## Chain 4:                0.007811 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 111 : 23 out of 35 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 6e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002783 seconds (Warm-up)
## Chain 1:                0.004909 seconds (Sampling)
## Chain 1:                0.007692 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 6e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.002488 seconds (Warm-up)
## Chain 2:                0.004631 seconds (Sampling)
## Chain 2:                0.007119 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 5e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.002924 seconds (Warm-up)
## Chain 3:                0.004708 seconds (Sampling)
## Chain 3:                0.007632 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 5e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.002834 seconds (Warm-up)
## Chain 4:                0.004986 seconds (Sampling)
## Chain 4:                0.00782 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 120 : 24 out of 35 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 6e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003284 seconds (Warm-up)
## Chain 1:                0.006335 seconds (Sampling)
## Chain 1:                0.009619 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 4e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.003332 seconds (Warm-up)
## Chain 2:                0.005014 seconds (Sampling)
## Chain 2:                0.008346 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 7e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.07 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.003008 seconds (Warm-up)
## Chain 3:                0.006549 seconds (Sampling)
## Chain 3:                0.009557 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 9e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.09 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.003367 seconds (Warm-up)
## Chain 4:                0.006389 seconds (Sampling)
## Chain 4:                0.009756 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 123 : 25 out of 35 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 6e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002975 seconds (Warm-up)
## Chain 1:                0.006096 seconds (Sampling)
## Chain 1:                0.009071 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 6e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.002676 seconds (Warm-up)
## Chain 2:                0.005299 seconds (Sampling)
## Chain 2:                0.007975 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 5e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.003673 seconds (Warm-up)
## Chain 3:                0.006182 seconds (Sampling)
## Chain 3:                0.009855 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 5e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.002455 seconds (Warm-up)
## Chain 4:                0.004829 seconds (Sampling)
## Chain 4:                0.007284 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 124 : 26 out of 35 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 9e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.09 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004143 seconds (Warm-up)
## Chain 1:                0.005134 seconds (Sampling)
## Chain 1:                0.009277 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 5e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.003945 seconds (Warm-up)
## Chain 2:                0.007228 seconds (Sampling)
## Chain 2:                0.011173 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 5e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.002553 seconds (Warm-up)
## Chain 3:                0.005419 seconds (Sampling)
## Chain 3:                0.007972 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 6e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.003278 seconds (Warm-up)
## Chain 4:                0.005269 seconds (Sampling)
## Chain 4:                0.008547 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 128 : 27 out of 35 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 6e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002106 seconds (Warm-up)
## Chain 1:                0.003479 seconds (Sampling)
## Chain 1:                0.005585 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 6e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.00209 seconds (Warm-up)
## Chain 2:                0.003549 seconds (Sampling)
## Chain 2:                0.005639 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 6e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.002527 seconds (Warm-up)
## Chain 3:                0.004457 seconds (Sampling)
## Chain 3:                0.006984 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 6e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.002036 seconds (Warm-up)
## Chain 4:                0.003102 seconds (Sampling)
## Chain 4:                0.005138 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 134 : 28 out of 35 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 7e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.07 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002115 seconds (Warm-up)
## Chain 1:                0.003688 seconds (Sampling)
## Chain 1:                0.005803 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 5e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.00204 seconds (Warm-up)
## Chain 2:                0.003155 seconds (Sampling)
## Chain 2:                0.005195 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 6e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.001566 seconds (Warm-up)
## Chain 3:                0.002931 seconds (Sampling)
## Chain 3:                0.004497 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 5e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.001541 seconds (Warm-up)
## Chain 4:                0.003086 seconds (Sampling)
## Chain 4:                0.004627 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 142 : 29 out of 35 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 7e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.07 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001664 seconds (Warm-up)
## Chain 1:                0.003401 seconds (Sampling)
## Chain 1:                0.005065 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 5e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.001534 seconds (Warm-up)
## Chain 2:                0.003267 seconds (Sampling)
## Chain 2:                0.004801 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 7e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.07 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.001557 seconds (Warm-up)
## Chain 3:                0.002987 seconds (Sampling)
## Chain 3:                0.004544 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 6e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.001485 seconds (Warm-up)
## Chain 4:                0.003297 seconds (Sampling)
## Chain 4:                0.004782 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 149 : 30 out of 35 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 7e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.07 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002703 seconds (Warm-up)
## Chain 1:                0.005443 seconds (Sampling)
## Chain 1:                0.008146 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 5e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.003263 seconds (Warm-up)
## Chain 2:                0.005318 seconds (Sampling)
## Chain 2:                0.008581 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 5e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.002825 seconds (Warm-up)
## Chain 3:                0.005334 seconds (Sampling)
## Chain 3:                0.008159 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 6e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.003518 seconds (Warm-up)
## Chain 4:                0.005466 seconds (Sampling)
## Chain 4:                0.008984 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 151 : 31 out of 35 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 7e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.07 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002827 seconds (Warm-up)
## Chain 1:                0.005607 seconds (Sampling)
## Chain 1:                0.008434 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 6e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.002863 seconds (Warm-up)
## Chain 2:                0.005002 seconds (Sampling)
## Chain 2:                0.007865 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 6e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.002495 seconds (Warm-up)
## Chain 3:                0.005572 seconds (Sampling)
## Chain 3:                0.008067 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 5e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.002842 seconds (Warm-up)
## Chain 4:                0.004821 seconds (Sampling)
## Chain 4:                0.007663 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 171 : 32 out of 35 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 6e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001788 seconds (Warm-up)
## Chain 1:                0.003325 seconds (Sampling)
## Chain 1:                0.005113 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 5e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.001627 seconds (Warm-up)
## Chain 2:                0.003323 seconds (Sampling)
## Chain 2:                0.00495 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 5e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.00173 seconds (Warm-up)
## Chain 3:                0.003308 seconds (Sampling)
## Chain 3:                0.005038 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 6e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.001941 seconds (Warm-up)
## Chain 4:                0.003199 seconds (Sampling)
## Chain 4:                0.00514 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 172 : 33 out of 35 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 7e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.07 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002755 seconds (Warm-up)
## Chain 1:                0.006494 seconds (Sampling)
## Chain 1:                0.009249 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 5e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.004078 seconds (Warm-up)
## Chain 2:                0.005503 seconds (Sampling)
## Chain 2:                0.009581 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 5e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.003432 seconds (Warm-up)
## Chain 3:                0.005752 seconds (Sampling)
## Chain 3:                0.009184 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 5e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.003522 seconds (Warm-up)
## Chain 4:                0.00555 seconds (Sampling)
## Chain 4:                0.009072 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 176 : 34 out of 35 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 6e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001574 seconds (Warm-up)
## Chain 1:                0.003228 seconds (Sampling)
## Chain 1:                0.004802 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 5e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.002176 seconds (Warm-up)
## Chain 2:                0.003489 seconds (Sampling)
## Chain 2:                0.005665 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 6e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.001735 seconds (Warm-up)
## Chain 3:                0.003319 seconds (Sampling)
## Chain 3:                0.005054 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 6e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.002306 seconds (Warm-up)
## Chain 4:                0.00331 seconds (Sampling)
## Chain 4:                0.005616 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 187 : 35 out of 35 
## ---- Bootstrap 2 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 7e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.07 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001652 seconds (Warm-up)
## Chain 1:                0.003093 seconds (Sampling)
## Chain 1:                0.004745 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 5e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.001566 seconds (Warm-up)
## Chain 2:                0.00345 seconds (Sampling)
## Chain 2:                0.005016 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 5e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.001732 seconds (Warm-up)
## Chain 3:                0.003345 seconds (Sampling)
## Chain 3:                0.005077 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 6e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.001525 seconds (Warm-up)
## Chain 4:                0.00322 seconds (Sampling)
## Chain 4:                0.004745 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 17 : 1 out of 38 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 6e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001574 seconds (Warm-up)
## Chain 1:                0.003228 seconds (Sampling)
## Chain 1:                0.004802 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 7e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.07 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.001552 seconds (Warm-up)
## Chain 2:                0.003388 seconds (Sampling)
## Chain 2:                0.00494 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 5e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.001739 seconds (Warm-up)
## Chain 3:                0.003543 seconds (Sampling)
## Chain 3:                0.005282 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 7e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.07 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.002935 seconds (Warm-up)
## Chain 4:                0.003862 seconds (Sampling)
## Chain 4:                0.006797 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 22 : 2 out of 38 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 7e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.07 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001679 seconds (Warm-up)
## Chain 1:                0.003209 seconds (Sampling)
## Chain 1:                0.004888 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 6e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.001652 seconds (Warm-up)
## Chain 2:                0.003266 seconds (Sampling)
## Chain 2:                0.004918 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 5e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.001596 seconds (Warm-up)
## Chain 3:                0.003446 seconds (Sampling)
## Chain 3:                0.005042 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 6e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.001782 seconds (Warm-up)
## Chain 4:                0.003455 seconds (Sampling)
## Chain 4:                0.005237 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 23 : 3 out of 38 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 7e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.07 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002302 seconds (Warm-up)
## Chain 1:                0.004375 seconds (Sampling)
## Chain 1:                0.006677 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 5e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.002628 seconds (Warm-up)
## Chain 2:                0.004707 seconds (Sampling)
## Chain 2:                0.007335 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 5e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.002415 seconds (Warm-up)
## Chain 3:                0.004701 seconds (Sampling)
## Chain 3:                0.007116 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 5e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.002348 seconds (Warm-up)
## Chain 4:                0.004868 seconds (Sampling)
## Chain 4:                0.007216 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 24 : 4 out of 38 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 7e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.07 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001635 seconds (Warm-up)
## Chain 1:                0.003207 seconds (Sampling)
## Chain 1:                0.004842 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 5e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.001672 seconds (Warm-up)
## Chain 2:                0.003661 seconds (Sampling)
## Chain 2:                0.005333 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 5e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.001654 seconds (Warm-up)
## Chain 3:                0.003276 seconds (Sampling)
## Chain 3:                0.00493 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 6e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.001479 seconds (Warm-up)
## Chain 4:                0.003235 seconds (Sampling)
## Chain 4:                0.004714 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 27 : 5 out of 38 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 7e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.07 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002698 seconds (Warm-up)
## Chain 1:                0.004998 seconds (Sampling)
## Chain 1:                0.007696 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 5e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.002502 seconds (Warm-up)
## Chain 2:                0.006839 seconds (Sampling)
## Chain 2:                0.009341 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 8e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.08 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.003356 seconds (Warm-up)
## Chain 3:                0.007252 seconds (Sampling)
## Chain 3:                0.010608 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 5e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.002533 seconds (Warm-up)
## Chain 4:                0.00515 seconds (Sampling)
## Chain 4:                0.007683 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 31 : 6 out of 38 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 6e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001694 seconds (Warm-up)
## Chain 1:                0.003331 seconds (Sampling)
## Chain 1:                0.005025 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 5e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.001779 seconds (Warm-up)
## Chain 2:                0.004028 seconds (Sampling)
## Chain 2:                0.005807 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 6e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.001701 seconds (Warm-up)
## Chain 3:                0.003554 seconds (Sampling)
## Chain 3:                0.005255 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 6e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.001892 seconds (Warm-up)
## Chain 4:                0.003285 seconds (Sampling)
## Chain 4:                0.005177 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 33 : 7 out of 38 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 7e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.07 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.00255 seconds (Warm-up)
## Chain 1:                0.00429 seconds (Sampling)
## Chain 1:                0.00684 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 7e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.07 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.002632 seconds (Warm-up)
## Chain 2:                0.004618 seconds (Sampling)
## Chain 2:                0.00725 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 5e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.002624 seconds (Warm-up)
## Chain 3:                0.004575 seconds (Sampling)
## Chain 3:                0.007199 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 5e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.002591 seconds (Warm-up)
## Chain 4:                0.00472 seconds (Sampling)
## Chain 4:                0.007311 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 38 : 8 out of 38 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 8e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.08 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001755 seconds (Warm-up)
## Chain 1:                0.003374 seconds (Sampling)
## Chain 1:                0.005129 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 6e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.001669 seconds (Warm-up)
## Chain 2:                0.003536 seconds (Sampling)
## Chain 2:                0.005205 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 7e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.07 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.002309 seconds (Warm-up)
## Chain 3:                0.004877 seconds (Sampling)
## Chain 3:                0.007186 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 8e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.08 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.002741 seconds (Warm-up)
## Chain 4:                0.005683 seconds (Sampling)
## Chain 4:                0.008424 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 49 : 9 out of 38 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 7e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.07 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002419 seconds (Warm-up)
## Chain 1:                0.00469 seconds (Sampling)
## Chain 1:                0.007109 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 5e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.00248 seconds (Warm-up)
## Chain 2:                0.004592 seconds (Sampling)
## Chain 2:                0.007072 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 5e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.002551 seconds (Warm-up)
## Chain 3:                0.005021 seconds (Sampling)
## Chain 3:                0.007572 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 6e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.002396 seconds (Warm-up)
## Chain 4:                0.004751 seconds (Sampling)
## Chain 4:                0.007147 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 52 : 10 out of 38 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 7e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.07 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002325 seconds (Warm-up)
## Chain 1:                0.004846 seconds (Sampling)
## Chain 1:                0.007171 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 5e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.002333 seconds (Warm-up)
## Chain 2:                0.004935 seconds (Sampling)
## Chain 2:                0.007268 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 6e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.002535 seconds (Warm-up)
## Chain 3:                0.004796 seconds (Sampling)
## Chain 3:                0.007331 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 6e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.003297 seconds (Warm-up)
## Chain 4:                0.004256 seconds (Sampling)
## Chain 4:                0.007553 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 56 : 11 out of 38 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 7e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.07 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002389 seconds (Warm-up)
## Chain 1:                0.004824 seconds (Sampling)
## Chain 1:                0.007213 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 6e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.002551 seconds (Warm-up)
## Chain 2:                0.004514 seconds (Sampling)
## Chain 2:                0.007065 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 5e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.002499 seconds (Warm-up)
## Chain 3:                0.004776 seconds (Sampling)
## Chain 3:                0.007275 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 8e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.08 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.003724 seconds (Warm-up)
## Chain 4:                0.005163 seconds (Sampling)
## Chain 4:                0.008887 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 58 : 12 out of 38 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 8e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.08 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.00173 seconds (Warm-up)
## Chain 1:                0.003411 seconds (Sampling)
## Chain 1:                0.005141 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 5e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.001779 seconds (Warm-up)
## Chain 2:                0.003533 seconds (Sampling)
## Chain 2:                0.005312 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 5e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.001855 seconds (Warm-up)
## Chain 3:                0.003404 seconds (Sampling)
## Chain 3:                0.005259 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 5e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.001789 seconds (Warm-up)
## Chain 4:                0.003559 seconds (Sampling)
## Chain 4:                0.005348 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 64 : 13 out of 38 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 6e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001678 seconds (Warm-up)
## Chain 1:                0.003356 seconds (Sampling)
## Chain 1:                0.005034 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 5e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.001718 seconds (Warm-up)
## Chain 2:                0.003629 seconds (Sampling)
## Chain 2:                0.005347 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 5e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.001658 seconds (Warm-up)
## Chain 3:                0.003671 seconds (Sampling)
## Chain 3:                0.005329 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 5e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.001897 seconds (Warm-up)
## Chain 4:                0.003441 seconds (Sampling)
## Chain 4:                0.005338 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 76 : 14 out of 38 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 6e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001666 seconds (Warm-up)
## Chain 1:                0.003391 seconds (Sampling)
## Chain 1:                0.005057 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 5e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.00173 seconds (Warm-up)
## Chain 2:                0.011739 seconds (Sampling)
## Chain 2:                0.013469 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 7e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.07 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.001676 seconds (Warm-up)
## Chain 3:                0.003116 seconds (Sampling)
## Chain 3:                0.004792 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 5e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.001645 seconds (Warm-up)
## Chain 4:                0.00343 seconds (Sampling)
## Chain 4:                0.005075 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 93 : 15 out of 38 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 6e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001957 seconds (Warm-up)
## Chain 1:                0.00328 seconds (Sampling)
## Chain 1:                0.005237 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 4e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.001746 seconds (Warm-up)
## Chain 2:                0.003478 seconds (Sampling)
## Chain 2:                0.005224 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 5e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.001727 seconds (Warm-up)
## Chain 3:                0.003538 seconds (Sampling)
## Chain 3:                0.005265 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 5e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.002002 seconds (Warm-up)
## Chain 4:                0.003316 seconds (Sampling)
## Chain 4:                0.005318 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 99 : 16 out of 38 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 6e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.00357 seconds (Warm-up)
## Chain 1:                0.00519 seconds (Sampling)
## Chain 1:                0.00876 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 5e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.002747 seconds (Warm-up)
## Chain 2:                0.00565 seconds (Sampling)
## Chain 2:                0.008397 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 6e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.002787 seconds (Warm-up)
## Chain 3:                0.005221 seconds (Sampling)
## Chain 3:                0.008008 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 7e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.07 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.002613 seconds (Warm-up)
## Chain 4:                0.005706 seconds (Sampling)
## Chain 4:                0.008319 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 103 : 17 out of 38 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 7e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.07 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002633 seconds (Warm-up)
## Chain 1:                0.005466 seconds (Sampling)
## Chain 1:                0.008099 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 7e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.07 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.002741 seconds (Warm-up)
## Chain 2:                0.005354 seconds (Sampling)
## Chain 2:                0.008095 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 6e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.002571 seconds (Warm-up)
## Chain 3:                0.005034 seconds (Sampling)
## Chain 3:                0.007605 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 6e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.002848 seconds (Warm-up)
## Chain 4:                0.005485 seconds (Sampling)
## Chain 4:                0.008333 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 105 : 18 out of 38 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 5e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001751 seconds (Warm-up)
## Chain 1:                0.003598 seconds (Sampling)
## Chain 1:                0.005349 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 6e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.001886 seconds (Warm-up)
## Chain 2:                0.003367 seconds (Sampling)
## Chain 2:                0.005253 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 5e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.001824 seconds (Warm-up)
## Chain 3:                0.003523 seconds (Sampling)
## Chain 3:                0.005347 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 6e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.001977 seconds (Warm-up)
## Chain 4:                0.00346 seconds (Sampling)
## Chain 4:                0.005437 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 115 : 19 out of 38 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 5e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001874 seconds (Warm-up)
## Chain 1:                0.003392 seconds (Sampling)
## Chain 1:                0.005266 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 5e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.001751 seconds (Warm-up)
## Chain 2:                0.003394 seconds (Sampling)
## Chain 2:                0.005145 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 5e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.001922 seconds (Warm-up)
## Chain 3:                0.003375 seconds (Sampling)
## Chain 3:                0.005297 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 4e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.001728 seconds (Warm-up)
## Chain 4:                0.003184 seconds (Sampling)
## Chain 4:                0.004912 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 119 : 20 out of 38 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 7e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.07 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002919 seconds (Warm-up)
## Chain 1:                0.006464 seconds (Sampling)
## Chain 1:                0.009383 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 5e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.003276 seconds (Warm-up)
## Chain 2:                0.005381 seconds (Sampling)
## Chain 2:                0.008657 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 6e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.002725 seconds (Warm-up)
## Chain 3:                0.00539 seconds (Sampling)
## Chain 3:                0.008115 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 5e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.00389 seconds (Warm-up)
## Chain 4:                0.005702 seconds (Sampling)
## Chain 4:                0.009592 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 120 : 21 out of 38 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 7e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.07 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001728 seconds (Warm-up)
## Chain 1:                0.00388 seconds (Sampling)
## Chain 1:                0.005608 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 6e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.002076 seconds (Warm-up)
## Chain 2:                0.00378 seconds (Sampling)
## Chain 2:                0.005856 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 5e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.001747 seconds (Warm-up)
## Chain 3:                0.003535 seconds (Sampling)
## Chain 3:                0.005282 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 6e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.001934 seconds (Warm-up)
## Chain 4:                0.003432 seconds (Sampling)
## Chain 4:                0.005366 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 121 : 22 out of 38 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 7e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.07 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001882 seconds (Warm-up)
## Chain 1:                0.003273 seconds (Sampling)
## Chain 1:                0.005155 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 5e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.00181 seconds (Warm-up)
## Chain 2:                0.0034 seconds (Sampling)
## Chain 2:                0.00521 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 6e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.001716 seconds (Warm-up)
## Chain 3:                0.003536 seconds (Sampling)
## Chain 3:                0.005252 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 6e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.001889 seconds (Warm-up)
## Chain 4:                0.003777 seconds (Sampling)
## Chain 4:                0.005666 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 129 : 23 out of 38 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 6e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001739 seconds (Warm-up)
## Chain 1:                0.003434 seconds (Sampling)
## Chain 1:                0.005173 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 6e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.00203 seconds (Warm-up)
## Chain 2:                0.003494 seconds (Sampling)
## Chain 2:                0.005524 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 4e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.001849 seconds (Warm-up)
## Chain 3:                0.003476 seconds (Sampling)
## Chain 3:                0.005325 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 5e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.002014 seconds (Warm-up)
## Chain 4:                0.003373 seconds (Sampling)
## Chain 4:                0.005387 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 134 : 24 out of 38 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 7e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.07 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.001754 seconds (Warm-up)
## Chain 1:                0.003678 seconds (Sampling)
## Chain 1:                0.005432 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 6e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.00182 seconds (Warm-up)
## Chain 2:                0.004065 seconds (Sampling)
## Chain 2:                0.005885 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 6e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.002099 seconds (Warm-up)
## Chain 3:                0.004527 seconds (Sampling)
## Chain 3:                0.006626 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 6e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.001831 seconds (Warm-up)
## Chain 4:                0.004044 seconds (Sampling)
## Chain 4:                0.005875 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 137 : 25 out of 38 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 7e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.07 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002499 seconds (Warm-up)
## Chain 1:                0.004316 seconds (Sampling)
## Chain 1:                0.006815 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 6e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.00196 seconds (Warm-up)
## Chain 2:                0.004446 seconds (Sampling)
## Chain 2:                0.006406 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 5e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.002373 seconds (Warm-up)
## Chain 3:                0.004157 seconds (Sampling)
## Chain 3:                0.00653 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 7e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.07 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.002435 seconds (Warm-up)
## Chain 4:                0.003889 seconds (Sampling)
## Chain 4:                0.006324 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 138 : 26 out of 38 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 6e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003174 seconds (Warm-up)
## Chain 1:                0.006295 seconds (Sampling)
## Chain 1:                0.009469 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 5e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.003499 seconds (Warm-up)
## Chain 2:                0.006151 seconds (Sampling)
## Chain 2:                0.00965 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 6e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.003294 seconds (Warm-up)
## Chain 3:                0.006493 seconds (Sampling)
## Chain 3:                0.009787 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 5e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.003942 seconds (Warm-up)
## Chain 4:                0.00627 seconds (Sampling)
## Chain 4:                0.010212 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 144 : 27 out of 38 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 7e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.07 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003123 seconds (Warm-up)
## Chain 1:                0.006756 seconds (Sampling)
## Chain 1:                0.009879 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 5e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.003459 seconds (Warm-up)
## Chain 2:                0.007003 seconds (Sampling)
## Chain 2:                0.010462 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 7e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.07 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.003748 seconds (Warm-up)
## Chain 3:                0.007125 seconds (Sampling)
## Chain 3:                0.010873 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 7e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.07 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.003706 seconds (Warm-up)
## Chain 4:                0.006783 seconds (Sampling)
## Chain 4:                0.010489 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 150 : 28 out of 38 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 7e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.07 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.005219 seconds (Warm-up)
## Chain 1:                0.006942 seconds (Sampling)
## Chain 1:                0.012161 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 6e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.0032 seconds (Warm-up)
## Chain 2:                0.006628 seconds (Sampling)
## Chain 2:                0.009828 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 8e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.08 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.00347 seconds (Warm-up)
## Chain 3:                0.006569 seconds (Sampling)
## Chain 3:                0.010039 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 5e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.003362 seconds (Warm-up)
## Chain 4:                0.006585 seconds (Sampling)
## Chain 4:                0.009947 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 151 : 29 out of 38 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 7e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.07 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.004133 seconds (Warm-up)
## Chain 1:                0.006212 seconds (Sampling)
## Chain 1:                0.010345 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 5e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.002638 seconds (Warm-up)
## Chain 2:                0.005387 seconds (Sampling)
## Chain 2:                0.008025 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 5e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.002419 seconds (Warm-up)
## Chain 3:                0.005503 seconds (Sampling)
## Chain 3:                0.007922 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 5e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.002829 seconds (Warm-up)
## Chain 4:                0.004948 seconds (Sampling)
## Chain 4:                0.007777 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 161 : 30 out of 38 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 9e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.09 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003644 seconds (Warm-up)
## Chain 1:                0.005939 seconds (Sampling)
## Chain 1:                0.009583 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 7e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.07 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.003122 seconds (Warm-up)
## Chain 2:                0.007509 seconds (Sampling)
## Chain 2:                0.010631 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 5e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.002736 seconds (Warm-up)
## Chain 3:                0.005905 seconds (Sampling)
## Chain 3:                0.008641 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 5e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.003436 seconds (Warm-up)
## Chain 4:                0.00597 seconds (Sampling)
## Chain 4:                0.009406 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 162 : 31 out of 38 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 6e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003068 seconds (Warm-up)
## Chain 1:                0.0069 seconds (Sampling)
## Chain 1:                0.009968 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 5e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.003329 seconds (Warm-up)
## Chain 2:                0.00564 seconds (Sampling)
## Chain 2:                0.008969 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 5e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.003568 seconds (Warm-up)
## Chain 3:                0.00611 seconds (Sampling)
## Chain 3:                0.009678 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 5e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.00356 seconds (Warm-up)
## Chain 4:                0.006591 seconds (Sampling)
## Chain 4:                0.010151 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 167 : 32 out of 38 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 6e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003511 seconds (Warm-up)
## Chain 1:                0.006875 seconds (Sampling)
## Chain 1:                0.010386 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 5e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.003657 seconds (Warm-up)
## Chain 2:                0.006663 seconds (Sampling)
## Chain 2:                0.01032 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 6e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.00365 seconds (Warm-up)
## Chain 3:                0.00701 seconds (Sampling)
## Chain 3:                0.01066 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 5e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.002916 seconds (Warm-up)
## Chain 4:                0.005763 seconds (Sampling)
## Chain 4:                0.008679 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 169 : 33 out of 38 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 7e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.07 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003399 seconds (Warm-up)
## Chain 1:                0.006526 seconds (Sampling)
## Chain 1:                0.009925 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 5e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.002757 seconds (Warm-up)
## Chain 2:                0.005723 seconds (Sampling)
## Chain 2:                0.00848 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 6e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.003093 seconds (Warm-up)
## Chain 3:                0.006101 seconds (Sampling)
## Chain 3:                0.009194 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 6e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.002906 seconds (Warm-up)
## Chain 4:                0.005602 seconds (Sampling)
## Chain 4:                0.008508 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 172 : 34 out of 38 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 8e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.08 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003504 seconds (Warm-up)
## Chain 1:                0.006435 seconds (Sampling)
## Chain 1:                0.009939 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 5e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.002775 seconds (Warm-up)
## Chain 2:                0.007001 seconds (Sampling)
## Chain 2:                0.009776 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 6e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.004119 seconds (Warm-up)
## Chain 3:                0.00747 seconds (Sampling)
## Chain 3:                0.011589 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 8e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.08 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.003229 seconds (Warm-up)
## Chain 4:                0.007469 seconds (Sampling)
## Chain 4:                0.010698 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 173 : 35 out of 38 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 7e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.07 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002027 seconds (Warm-up)
## Chain 1:                0.004373 seconds (Sampling)
## Chain 1:                0.0064 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 5e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.002419 seconds (Warm-up)
## Chain 2:                0.003978 seconds (Sampling)
## Chain 2:                0.006397 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 5e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.002518 seconds (Warm-up)
## Chain 3:                0.004063 seconds (Sampling)
## Chain 3:                0.006581 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 6e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.001848 seconds (Warm-up)
## Chain 4:                0.014844 seconds (Sampling)
## Chain 4:                0.016692 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 175 : 36 out of 38 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 8e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.08 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.003415 seconds (Warm-up)
## Chain 1:                0.006537 seconds (Sampling)
## Chain 1:                0.009952 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 7e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.07 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.00367 seconds (Warm-up)
## Chain 2:                0.007399 seconds (Sampling)
## Chain 2:                0.011069 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 8e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.08 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.00352 seconds (Warm-up)
## Chain 3:                0.006788 seconds (Sampling)
## Chain 3:                0.010308 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 7e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.07 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.00336 seconds (Warm-up)
## Chain 4:                0.007208 seconds (Sampling)
## Chain 4:                0.010568 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 186 : 37 out of 38 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 8e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.08 seconds.
## Chain 1: Adjust your expectations accordingly!
## Chain 1: 
## Chain 1: 
## Chain 1: WARNING: There aren't enough warmup iterations to fit the
## Chain 1:          three stages of adaptation as currently configured.
## Chain 1:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 1:          the given number of warmup iterations:
## Chain 1:            init_buffer = 15
## Chain 1:            adapt_window = 75
## Chain 1:            term_buffer = 10
## Chain 1: 
## Chain 1: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 1: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 1: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 1: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 1: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 1: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 1: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 1: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 1: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 1: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 1: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 1: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 1: 
## Chain 1:  Elapsed Time: 0.002918 seconds (Warm-up)
## Chain 1:                0.006121 seconds (Sampling)
## Chain 1:                0.009039 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 5e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 2: Adjust your expectations accordingly!
## Chain 2: 
## Chain 2: 
## Chain 2: WARNING: There aren't enough warmup iterations to fit the
## Chain 2:          three stages of adaptation as currently configured.
## Chain 2:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 2:          the given number of warmup iterations:
## Chain 2:            init_buffer = 15
## Chain 2:            adapt_window = 75
## Chain 2:            term_buffer = 10
## Chain 2: 
## Chain 2: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 2: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 2: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 2: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 2: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 2: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 2: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 2: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 2: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 2: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 2: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 2: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 2: 
## Chain 2:  Elapsed Time: 0.002927 seconds (Warm-up)
## Chain 2:                0.006405 seconds (Sampling)
## Chain 2:                0.009332 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 5e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 3: Adjust your expectations accordingly!
## Chain 3: 
## Chain 3: 
## Chain 3: WARNING: There aren't enough warmup iterations to fit the
## Chain 3:          three stages of adaptation as currently configured.
## Chain 3:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 3:          the given number of warmup iterations:
## Chain 3:            init_buffer = 15
## Chain 3:            adapt_window = 75
## Chain 3:            term_buffer = 10
## Chain 3: 
## Chain 3: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 3: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 3: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 3: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 3: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 3: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 3: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 3: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 3: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 3: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 3: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 3: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 3: 
## Chain 3:  Elapsed Time: 0.003863 seconds (Warm-up)
## Chain 3:                0.005929 seconds (Sampling)
## Chain 3:                0.009792 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 5e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Chain 4: Adjust your expectations accordingly!
## Chain 4: 
## Chain 4: 
## Chain 4: WARNING: There aren't enough warmup iterations to fit the
## Chain 4:          three stages of adaptation as currently configured.
## Chain 4:          Reducing each adaptation stage to 15%/75%/10% of
## Chain 4:          the given number of warmup iterations:
## Chain 4:            init_buffer = 15
## Chain 4:            adapt_window = 75
## Chain 4:            term_buffer = 10
## Chain 4: 
## Chain 4: Iteration:   1 / 300 [  0%]  (Warmup)
## Chain 4: Iteration:  30 / 300 [ 10%]  (Warmup)
## Chain 4: Iteration:  60 / 300 [ 20%]  (Warmup)
## Chain 4: Iteration:  90 / 300 [ 30%]  (Warmup)
## Chain 4: Iteration: 101 / 300 [ 33%]  (Sampling)
## Chain 4: Iteration: 130 / 300 [ 43%]  (Sampling)
## Chain 4: Iteration: 160 / 300 [ 53%]  (Sampling)
## Chain 4: Iteration: 190 / 300 [ 63%]  (Sampling)
## Chain 4: Iteration: 220 / 300 [ 73%]  (Sampling)
## Chain 4: Iteration: 250 / 300 [ 83%]  (Sampling)
## Chain 4: Iteration: 280 / 300 [ 93%]  (Sampling)
## Chain 4: Iteration: 300 / 300 [100%]  (Sampling)
## Chain 4: 
## Chain 4:  Elapsed Time: 0.002958 seconds (Warm-up)
## Chain 4:                0.005593 seconds (Sampling)
## Chain 4:                0.008551 seconds (Total)
## Chain 4:
## Warning: Bulk Effective Samples Size (ESS) is too low, indicating posterior means and medians may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#bulk-ess

## Warning: Tail Effective Samples Size (ESS) is too low, indicating posterior variances and tail quantiles may be unreliable.
## Running the chains for more iterations may help. See
## https://mc-stan.org/misc/warnings.html#tail-ess
## 187 : 38 out of 38
rst.test
## 
## The sensitivity parameters considered were
## [1] -0.25  0.00  0.25
## 
## Treatment effect (theta) under different 
## sensitivity parameters are: 
## 
##       Delta0 Delta1       Theta         SD       Q2.5        Q97.5       PValue
##  [1,]  -0.25  -0.25 -0.17414779 0.05925720 -0.2902898 -0.058005818 0.0032943650
##  [2,]   0.00  -0.25 -0.13301304 0.08740558 -0.3043248  0.038298750 0.1280614165
##  [3,]   0.25  -0.25 -0.08945321 0.10173861 -0.2888572  0.109950793 0.3792681721
##  [4,]  -0.25   0.00 -0.23408831 0.06359270 -0.3587277 -0.109448915 0.0002322695
##  [5,]   0.00   0.00 -0.18888126 0.09271171 -0.3705929 -0.007169645 0.0416203221
##  [6,]   0.25   0.00 -0.13411119 0.10681826 -0.3434711  0.075248752 0.2092943740
##  [7,]  -0.25   0.25 -0.29576756 0.07624329 -0.4452017 -0.146333454 0.0001047747
##  [8,]   0.00   0.25 -0.26099291 0.10245041 -0.4617920 -0.060193802 0.0108496340
##  [9,]   0.25   0.25 -0.20873942 0.12260724 -0.4490452  0.031566348 0.0886607630
## 
## Treatment effect (quantiles) under different 
## sensitivity parameters are: 
## 
##    Delta TRT    Q   QuantY QuantSurv      Q2.5     Q97.5 Q2.5_Surv Q97.5_Surv
## 3  -0.25   0 0.25       NA        14  15.00000  15.00000         1          1
## 8  -0.25   0 0.50       NA        72 305.00000 305.00000         1          1
## 13 -0.25   0 0.75 35.78072        NA  38.00000  38.00000         0          0
## 18 -0.25   1 0.25       NA        61  61.00000  61.00000         1          1
## 23 -0.25   1 0.50 22.00000        NA  25.34872  25.34872         0          0
## 28 -0.25   1 0.75 39.08344        NA  41.00000  41.00000         0          0
## 33  0.00   0 0.25       NA        14  15.00000  15.00000         1          1
## 38  0.00   0 0.50       NA        72 305.00000 305.00000         1          1
## 43  0.00   0 0.75 38.00000        NA  40.95547  40.95547         0          0
## 48  0.00   1 0.25       NA        61  61.00000  61.00000         1          1
## 53  0.00   1 0.50 29.90955        NA  30.00000  30.00000         0          0
## 58  0.00   1 0.75 42.68621        NA  44.00000  44.00000         0          0
## 63  0.25   0 0.25       NA        14  15.00000  15.00000         1          1
## 68  0.25   0 0.50       NA        72 305.00000 305.00000         1          1
## 73  0.25   0 0.75 40.00000        NA  44.38583  44.38583         0          0
## 78  0.25   1 0.25       NA        61  61.00000  61.00000         1          1
## 83  0.25   1 0.50 34.00000        NA  31.00000  31.00000         0          0
## 88  0.25   1 0.75 47.00000        NA  48.80214  48.80214         0          0
## 
## 
## The hypothesis testing and confidence intervals are 
## based on 2 bootstrap samples. Please consider more 
## bootstrap samples (e.g. >100) for the validity 
## of the results.

A contour plot of p-values in the sensitivity analysis results can be generated by the S3 method of the result returned by imInfer:

plot(rst.test, nlevels = 30, con.v=0.05, zlim=c(0, 0.05));

Graphical user interface (GUI)

The idem package provides a web-based GUI for composite endpoint analysis. The GUI can be accessed by

imShiny();