idem: Inference in Randomized Controlled Trials with Death and Missingness

## 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 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: 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.01 seconds (Warm-up)
## Chain 1:                0.011 seconds (Sampling)
## Chain 1:                0.021 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.011 seconds (Warm-up)
## Chain 2:                0.01 seconds (Sampling)
## Chain 2:                0.021 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.011 seconds (Warm-up)
## Chain 3:                0.01 seconds (Sampling)
## Chain 3:                0.021 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.011 seconds (Warm-up)
## Chain 4:                0.012 seconds (Sampling)
## Chain 4:                0.023 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 4e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.04 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.003 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 2:                0.005 seconds (Sampling)
## Chain 2:                0.008 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 3:                0.006 seconds (Sampling)
## Chain 3:                0.009 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 4:                0.006 seconds (Sampling)
## Chain 4:                0.009 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 1e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 2:                0.006 seconds (Sampling)
## Chain 2:                0.009 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 3:                0.006 seconds (Sampling)
## Chain 3:                0.01 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.005 seconds (Warm-up)
## Chain 4:                0.016 seconds (Sampling)
## Chain 4:                0.021 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 1e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 2:                0.007 seconds (Sampling)
## Chain 2:                0.01 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 3:                0.006 seconds (Sampling)
## Chain 3:                0.009 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 4:                0.006 seconds (Sampling)
## Chain 4:                0.009 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 1e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 2:                0.008 seconds (Sampling)
## Chain 2:                0.012 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 3:                0.036 seconds (Sampling)
## Chain 3:                0.039 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.012 seconds (Warm-up)
## Chain 4:                0.009 seconds (Sampling)
## Chain 4:                0.021 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 3e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.03 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.003 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 2:                0.007 seconds (Sampling)
## Chain 2:                0.01 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 3:                0.007 seconds (Sampling)
## Chain 3:                0.01 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 4:                0.007 seconds (Sampling)
## Chain 4:                0.01 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 1e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 2:                0.007 seconds (Sampling)
## Chain 2:                0.01 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 3:                0.007 seconds (Sampling)
## Chain 3:                0.01 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 4:                0.007 seconds (Sampling)
## Chain 4:                0.01 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 1e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 2:                0.009 seconds (Sampling)
## Chain 2:                0.013 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 3:                0.008 seconds (Sampling)
## Chain 3:                0.012 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 4:                0.008 seconds (Sampling)
## Chain 4:                0.012 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 2e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.02 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.003 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 2:                0.006 seconds (Sampling)
## Chain 2:                0.009 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 3:                0.006 seconds (Sampling)
## Chain 3:                0.009 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 4:                0.006 seconds (Sampling)
## Chain 4:                0.009 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 1e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 2:                0.007 seconds (Sampling)
## Chain 2:                0.011 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 3:                0.008 seconds (Sampling)
## Chain 3:                0.012 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 4:                0.007 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
## 43 : 9 out of 35 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 3e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.03 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.004 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 2:                0.008 seconds (Sampling)
## Chain 2:                0.012 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 3:                0.008 seconds (Sampling)
## Chain 3:                0.012 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 4:                0.008 seconds (Sampling)
## Chain 4:                0.012 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 3e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.03 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.004 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 2:                0.008 seconds (Sampling)
## Chain 2:                0.012 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 3:                0.007 seconds (Sampling)
## Chain 3:                0.01 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 4:                0.008 seconds (Sampling)
## Chain 4:                0.012 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 2e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.02 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.004 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 2:                0.008 seconds (Sampling)
## Chain 2:                0.012 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 3:                0.008 seconds (Sampling)
## Chain 3:                0.012 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 4:                0.007 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
## 54 : 12 out of 35 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 1e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 2:                0.006 seconds (Sampling)
## Chain 2:                0.009 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 3:                0.006 seconds (Sampling)
## Chain 3:                0.009 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 4:                0.006 seconds (Sampling)
## Chain 4:                0.009 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 1e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 2:                0.007 seconds (Sampling)
## Chain 2:                0.011 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 3:                0.008 seconds (Sampling)
## Chain 3:                0.012 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 4:                0.008 seconds (Sampling)
## Chain 4:                0.012 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 2e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.02 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.003 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 2:                0.007 seconds (Sampling)
## Chain 2:                0.01 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 3:                0.007 seconds (Sampling)
## Chain 3:                0.01 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 4:                0.007 seconds (Sampling)
## Chain 4:                0.01 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-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 2:                0.009 seconds (Sampling)
## Chain 2:                0.013 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 3:                0.008 seconds (Sampling)
## Chain 3:                0.012 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 4:                0.008 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
## 81 : 16 out of 35 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 1e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 2:                0.008 seconds (Sampling)
## Chain 2:                0.012 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 3:                0.009 seconds (Sampling)
## Chain 3:                0.013 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 4:                0.008 seconds (Sampling)
## Chain 4:                0.012 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 4e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.04 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.004 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 2:                0.009 seconds (Sampling)
## Chain 2:                0.013 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 3:                0.008 seconds (Sampling)
## Chain 3:                0.012 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 4:                0.008 seconds (Sampling)
## Chain 4:                0.012 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 2e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.02 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.003 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 2:                0.008 seconds (Sampling)
## Chain 2:                0.012 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 3:                0.008 seconds (Sampling)
## Chain 3:                0.011 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 4:                0.008 seconds (Sampling)
## Chain 4:                0.012 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 4e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.04 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.005 seconds (Warm-up)
## Chain 1:                0.01 seconds (Sampling)
## Chain 1:                0.015 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.005 seconds (Warm-up)
## Chain 2:                0.01 seconds (Sampling)
## Chain 2:                0.015 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 3:                0.009 seconds (Sampling)
## Chain 3:                0.013 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 4:                0.009 seconds (Sampling)
## Chain 4:                0.013 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 2e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.02 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.003 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 2:                0.007 seconds (Sampling)
## Chain 2:                0.01 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 3:                0.007 seconds (Sampling)
## Chain 3:                0.01 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 4:                0.007 seconds (Sampling)
## Chain 4:                0.01 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 2e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.02 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.003 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 2:                0.007 seconds (Sampling)
## Chain 2:                0.01 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 3:                0.007 seconds (Sampling)
## Chain 3:                0.01 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 4:                0.007 seconds (Sampling)
## Chain 4:                0.01 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 1e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 2:                0.008 seconds (Sampling)
## Chain 2:                0.012 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 3:                0.008 seconds (Sampling)
## Chain 3:                0.012 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 4:                0.008 seconds (Sampling)
## Chain 4:                0.012 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 3e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.03 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.004 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 2:                0.008 seconds (Sampling)
## Chain 2:                0.012 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 3:                0.008 seconds (Sampling)
## Chain 3:                0.012 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 4:                0.008 seconds (Sampling)
## Chain 4:                0.012 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 2e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.02 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.003 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 2:                0.008 seconds (Sampling)
## Chain 2:                0.012 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 3:                0.008 seconds (Sampling)
## Chain 3:                0.012 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 4:                0.007 seconds (Sampling)
## Chain 4:                0.01 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 3e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.03 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.003 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 2:                0.007 seconds (Sampling)
## Chain 2:                0.01 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.005 seconds (Warm-up)
## Chain 3:                0.008 seconds (Sampling)
## Chain 3:                0.013 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 4:                0.007 seconds (Sampling)
## Chain 4:                0.01 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 3e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.03 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.003 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 2:                0.007 seconds (Sampling)
## Chain 2:                0.011 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 3:                0.007 seconds (Sampling)
## Chain 3:                0.01 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 4:                0.007 seconds (Sampling)
## Chain 4:                0.01 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 4e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.04 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.003 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 2:                0.006 seconds (Sampling)
## Chain 2:                0.009 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 3:                0.005 seconds (Sampling)
## Chain 3:                0.008 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 4:                0.006 seconds (Sampling)
## Chain 4:                0.009 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 2e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.02 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.003 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 2:                0.005 seconds (Sampling)
## Chain 2:                0.008 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 3:                0.006 seconds (Sampling)
## Chain 3:                0.009 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 4:                0.006 seconds (Sampling)
## Chain 4:                0.009 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 2e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.02 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.003 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 2:                0.006 seconds (Sampling)
## Chain 2:                0.009 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 3:                0.006 seconds (Sampling)
## Chain 3:                0.009 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 4:                0.006 seconds (Sampling)
## Chain 4:                0.009 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 3e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.03 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.003 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 2:                0.007 seconds (Sampling)
## Chain 2:                0.011 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 3:                0.007 seconds (Sampling)
## Chain 3:                0.01 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 4:                0.007 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
## 151 : 31 out of 35 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 1e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 2:                0.007 seconds (Sampling)
## Chain 2:                0.01 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 3:                0.007 seconds (Sampling)
## Chain 3:                0.01 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 4:                0.007 seconds (Sampling)
## Chain 4:                0.01 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 2e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.02 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.003 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.002 seconds (Warm-up)
## Chain 2:                0.006 seconds (Sampling)
## Chain 2:                0.008 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 3:                0.006 seconds (Sampling)
## Chain 3:                0.009 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 4:                0.006 seconds (Sampling)
## Chain 4:                0.009 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 1e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 2:                0.008 seconds (Sampling)
## Chain 2:                0.012 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 3:                0.007 seconds (Sampling)
## Chain 3:                0.011 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 4:                0.007 seconds (Sampling)
## Chain 4:                0.01 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 2e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.02 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.003 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 2:                0.006 seconds (Sampling)
## Chain 2:                0.009 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 3:                0.006 seconds (Sampling)
## Chain 3:                0.009 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 4:                0.006 seconds (Sampling)
## Chain 4:                0.009 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 3e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.03 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.003 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 2:                0.007 seconds (Sampling)
## Chain 2:                0.01 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 3:                0.007 seconds (Sampling)
## Chain 3:                0.01 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 4:                0.007 seconds (Sampling)
## Chain 4:                0.01 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 1e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 2:                0.006 seconds (Sampling)
## Chain 2:                0.009 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 3:                0.008 seconds (Sampling)
## Chain 3:                0.011 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 4:                0.006 seconds (Sampling)
## Chain 4:                0.009 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 1e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 2:                0.006 seconds (Sampling)
## Chain 2:                0.009 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 3:                0.006 seconds (Sampling)
## Chain 3:                0.009 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 4:                0.006 seconds (Sampling)
## Chain 4:                0.009 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 1e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 2:                0.007 seconds (Sampling)
## Chain 2:                0.01 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 3:                0.007 seconds (Sampling)
## Chain 3:                0.01 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 4:                0.007 seconds (Sampling)
## Chain 4:                0.01 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 3e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.03 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.003 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 2:                0.006 seconds (Sampling)
## Chain 2:                0.009 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 3:                0.006 seconds (Sampling)
## Chain 3:                0.009 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 4:                0.006 seconds (Sampling)
## Chain 4:                0.009 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 2e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.02 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.003 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 2:                0.006 seconds (Sampling)
## Chain 2:                0.009 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 3:                0.007 seconds (Sampling)
## Chain 3:                0.01 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 4:                0.007 seconds (Sampling)
## Chain 4:                0.01 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 2e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.02 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.003 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 2:                0.007 seconds (Sampling)
## Chain 2:                0.01 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 2.8e-05 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.28 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.003 seconds (Warm-up)
## Chain 3:                0.007 seconds (Sampling)
## Chain 3:                0.01 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 4:                0.006 seconds (Sampling)
## Chain 4:                0.009 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 2e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.02 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.003 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 2:                0.007 seconds (Sampling)
## Chain 2:                0.01 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 3:                0.007 seconds (Sampling)
## Chain 3:                0.01 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 4:                0.007 seconds (Sampling)
## Chain 4:                0.01 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 1e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 2:                0.006 seconds (Sampling)
## Chain 2:                0.009 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 3:                0.006 seconds (Sampling)
## Chain 3:                0.009 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 4:                0.006 seconds (Sampling)
## Chain 4:                0.009 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 2e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.02 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.003 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 2:                0.006 seconds (Sampling)
## Chain 2:                0.009 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 3:                0.007 seconds (Sampling)
## Chain 3:                0.01 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 4:                0.007 seconds (Sampling)
## Chain 4:                0.01 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 1e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 2:                0.007 seconds (Sampling)
## Chain 2:                0.01 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 3:                0.007 seconds (Sampling)
## Chain 3:                0.01 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 4:                0.007 seconds (Sampling)
## Chain 4:                0.01 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 2e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.02 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.003 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 2:                0.007 seconds (Sampling)
## Chain 2:                0.01 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 3:                0.007 seconds (Sampling)
## Chain 3:                0.01 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 4:                0.007 seconds (Sampling)
## Chain 4:                0.01 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 2e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.02 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.003 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 2:                0.006 seconds (Sampling)
## Chain 2:                0.009 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 3:                0.006 seconds (Sampling)
## Chain 3:                0.009 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 4:                0.006 seconds (Sampling)
## Chain 4:                0.009 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 1e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 2:                0.006 seconds (Sampling)
## Chain 2:                0.009 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.002 seconds (Warm-up)
## Chain 3:                0.005 seconds (Sampling)
## Chain 3:                0.007 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 4:                0.006 seconds (Sampling)
## Chain 4:                0.009 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 1e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 2:                0.006 seconds (Sampling)
## Chain 2:                0.009 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 3:                0.006 seconds (Sampling)
## Chain 3:                0.009 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 4:                0.006 seconds (Sampling)
## Chain 4:                0.009 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 2e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.02 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.003 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 2:                0.006 seconds (Sampling)
## Chain 2:                0.009 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 3:                0.006 seconds (Sampling)
## Chain 3:                0.009 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 4:                0.006 seconds (Sampling)
## Chain 4:                0.009 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 2e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.02 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.004 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 2:                0.007 seconds (Sampling)
## Chain 2:                0.01 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 3:                0.007 seconds (Sampling)
## Chain 3:                0.01 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 4:                0.007 seconds (Sampling)
## Chain 4:                0.01 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 2e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.02 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.003 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 2:                0.007 seconds (Sampling)
## Chain 2:                0.01 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 3:                0.007 seconds (Sampling)
## Chain 3:                0.01 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 4:                0.008 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
## 105 : 18 out of 38 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 3e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.03 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.003 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 2:                0.006 seconds (Sampling)
## Chain 2:                0.009 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 3:                0.006 seconds (Sampling)
## Chain 3:                0.009 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 4:                0.006 seconds (Sampling)
## Chain 4:                0.009 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 1e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 2:                0.006 seconds (Sampling)
## Chain 2:                0.009 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 3:                0.006 seconds (Sampling)
## Chain 3:                0.009 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 4:                0.006 seconds (Sampling)
## Chain 4:                0.009 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 1e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 2:                0.007 seconds (Sampling)
## Chain 2:                0.01 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 3:                0.007 seconds (Sampling)
## Chain 3:                0.01 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 4:                0.008 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
## 120 : 21 out of 38 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 3e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.03 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.003 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 2:                0.007 seconds (Sampling)
## Chain 2:                0.011 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 3:                0.007 seconds (Sampling)
## Chain 3:                0.01 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 4:                0.007 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
## 121 : 22 out of 38 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 2e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.02 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.003 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 2:                0.008 seconds (Sampling)
## Chain 2:                0.011 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 3:                0.007 seconds (Sampling)
## Chain 3:                0.01 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 4:                0.007 seconds (Sampling)
## Chain 4:                0.01 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 2e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.02 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.003 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 2:                0.007 seconds (Sampling)
## Chain 2:                0.01 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 3:                0.007 seconds (Sampling)
## Chain 3:                0.01 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 4:                0.007 seconds (Sampling)
## Chain 4:                0.01 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 1e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 2:                0.006 seconds (Sampling)
## Chain 2:                0.009 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 3:                0.006 seconds (Sampling)
## Chain 3:                0.009 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 4:                0.006 seconds (Sampling)
## Chain 4:                0.009 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 2e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.02 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.003 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 2:                0.006 seconds (Sampling)
## Chain 2:                0.009 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 3:                0.006 seconds (Sampling)
## Chain 3:                0.009 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 4:                0.007 seconds (Sampling)
## Chain 4:                0.01 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 2e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.02 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.004 seconds (Warm-up)
## Chain 1:                0.008 seconds (Sampling)
## Chain 1:                0.012 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 2:                0.008 seconds (Sampling)
## Chain 2:                0.012 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 3:                0.008 seconds (Sampling)
## Chain 3:                0.012 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 4:                0.008 seconds (Sampling)
## Chain 4:                0.012 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 3e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.03 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.003 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 2:                0.007 seconds (Sampling)
## Chain 2:                0.01 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 3:                0.008 seconds (Sampling)
## Chain 3:                0.011 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 4:                0.007 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
## 150 : 28 out of 38 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 1e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 2:                0.008 seconds (Sampling)
## Chain 2:                0.012 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 3:                0.008 seconds (Sampling)
## Chain 3:                0.012 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 4:                0.008 seconds (Sampling)
## Chain 4:                0.012 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 2e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.02 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.004 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 2:                0.007 seconds (Sampling)
## Chain 2:                0.01 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 3:                0.008 seconds (Sampling)
## Chain 3:                0.011 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 4:                0.008 seconds (Sampling)
## Chain 4:                0.012 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 3e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.03 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.004 seconds (Warm-up)
## Chain 1:                0.009 seconds (Sampling)
## Chain 1:                0.013 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 2:                0.008 seconds (Sampling)
## Chain 2:                0.012 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 3:                0.008 seconds (Sampling)
## Chain 3:                0.012 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.005 seconds (Warm-up)
## Chain 4:                0.01 seconds (Sampling)
## Chain 4:                0.015 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 1e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 2:                0.006 seconds (Sampling)
## Chain 2:                0.009 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 3:                0.007 seconds (Sampling)
## Chain 3:                0.01 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 4:                0.007 seconds (Sampling)
## Chain 4:                0.01 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 2e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.02 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.004 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.011 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 2:                0.007 seconds (Sampling)
## Chain 2:                0.011 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 3:                0.007 seconds (Sampling)
## Chain 3:                0.01 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 4:                0.007 seconds (Sampling)
## Chain 4:                0.01 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 2e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.02 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.003 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 2:                0.007 seconds (Sampling)
## Chain 2:                0.01 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 3:                0.007 seconds (Sampling)
## Chain 3:                0.01 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 4:                0.007 seconds (Sampling)
## Chain 4:                0.01 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 3e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.03 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.003 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 2:                0.007 seconds (Sampling)
## Chain 2:                0.01 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 3:                0.007 seconds (Sampling)
## Chain 3:                0.01 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 4:                0.007 seconds (Sampling)
## Chain 4:                0.01 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 2e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.02 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.003 seconds (Warm-up)
## Chain 1:                0.006 seconds (Sampling)
## Chain 1:                0.009 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 2:                0.006 seconds (Sampling)
## Chain 2:                0.009 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 3:                0.006 seconds (Sampling)
## Chain 3:                0.009 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 4:                0.006 seconds (Sampling)
## Chain 4:                0.009 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 1e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 2:                0.007 seconds (Sampling)
## Chain 2:                0.01 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 3:                0.008 seconds (Sampling)
## Chain 3:                0.011 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 4:                0.008 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
## 186 : 37 out of 38 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
## Chain 1: 
## Chain 1: Gradient evaluation took 2e-06 seconds
## Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.02 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.003 seconds (Warm-up)
## Chain 1:                0.007 seconds (Sampling)
## Chain 1:                0.01 seconds (Total)
## Chain 1: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
## Chain 2: 
## Chain 2: Gradient evaluation took 1e-06 seconds
## Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 2:                0.007 seconds (Sampling)
## Chain 2:                0.01 seconds (Total)
## Chain 2: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
## Chain 3: 
## Chain 3: Gradient evaluation took 1e-06 seconds
## Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.004 seconds (Warm-up)
## Chain 3:                0.007 seconds (Sampling)
## Chain 3:                0.011 seconds (Total)
## Chain 3: 
## 
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
## Chain 4: 
## Chain 4: Gradient evaluation took 1e-06 seconds
## Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.01 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.003 seconds (Warm-up)
## Chain 4:                0.008 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
## 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();