This vignette documents the analysis of the data gathered from surveying 21 journals and 450 articles in the field of plant pathology for their openness and reproducibility and the effect that the journal’s 5-year impact factor had on that score.

Set-up Workspace

Load libraries used and setting the ggplot2 theme for the document.

Priors

Priors were set to be generic weakly informative.

priors <- c(prior(normal(0, 1), class = "b"),
            prior(normal(0, 1), class = "Intercept"))

Five Year Impact Factor Model

Computational Methods Availability

Test the effect that journal’s five year impact factor had on the availability of code.

rrpp <- import_notes()
rrpp <- drop_na(rrpp, comp_mthds_avail)

m_h1 <-
  brm(
    formula = comp_mthds_avail ~ IF_5year +
      (1 | assignee),
    data = rrpp,
    seed = 27,
    prior = priors,
    family = cumulative(link = "logit"),
    control = list(adapt_delta = 0.99),
    iter = 10000
  )
#> Compiling Stan program...
#> Start sampling

summary(m_h1)
#>  Family: cumulative 
#>   Links: mu = logit; disc = identity 
#> Formula: comp_mthds_avail ~ IF_5year + (1 | assignee) 
#>    Data: rrpp (Number of observations: 440) 
#>   Draws: 4 chains, each with iter = 10000; warmup = 5000; thin = 1;
#>          total post-warmup draws = 20000
#> 
#> Group-Level Effects: 
#> ~assignee (Number of levels: 5) 
#>               Estimate Est.Error l-95% CI u-95% CI Rhat Bulk_ESS Tail_ESS
#> sd(Intercept)     6.07      2.60     2.71    12.71 1.00     5374     9397
#> 
#> Population-Level Effects: 
#>              Estimate Est.Error l-95% CI u-95% CI Rhat Bulk_ESS Tail_ESS
#> Intercept[1]     1.53      1.02    -0.45     3.52 1.00    13716    12172
#> Intercept[2]     1.92      1.02    -0.03     3.93 1.00    14698    12608
#> IF_5year         0.46      0.27    -0.05     1.02 1.00    13942    11307
#> 
#> Family Specific Parameters: 
#>      Estimate Est.Error l-95% CI u-95% CI Rhat Bulk_ESS Tail_ESS
#> disc     1.00      0.00     1.00     1.00   NA       NA       NA
#> 
#> Draws were sampled using sampling(NUTS). For each parameter, Bulk_ESS
#> and Tail_ESS are effective sample size measures, and Rhat is the potential
#> scale reduction factor on split chains (at convergence, Rhat = 1).

plot(m_h1)


pp_check(m_h1, type = "bars", draws = 50)
#> Using 10 posterior draws for ppc type 'bars' by default.
#> Warning: The following arguments were unrecognized and ignored: draws


plot(equivalence_test(m_h1))
#> Picking joint bandwidth of 0.0834
#> Warning: Removed 3000 rows containing non-finite values
#> (`stat_density_ridges()`).


pander(m_h1_report <- report(m_h1))
#> Warning: Predictions are treated as continuous variables in 'bayes_R2' which is
#> likely invalid for ordinal families.
#> Warning: Predictions are treated as continuous variables in 'bayes_R2' which is
#> likely invalid for ordinal families.
#> Start sampling
#> Warning: Predictions are treated as continuous variables in 'bayes_R2' which is
#> likely invalid for ordinal families.

#> Warning: Predictions are treated as continuous variables in 'bayes_R2' which is
#> likely invalid for ordinal families.

_We fitted a Bayesian logistic mixed model (estimated using MCMC sampling with 4 chains of 10000 iterations and a warmup of 5000) to predict comp_mthds_avail with IF_5year (formula: comp_mthds_avail ~ IF_5year). The model included assignee as random effect (formula: ~1 | assignee). Priors over parameters were set as normal (mean = 0.00, SD = 1.00) distributions. The model’s explanatory power is weak (R2 = 0.02, 95% CI [1.35e-04, 0.11]) and the part related to the fixed effects alone (marginal R2) is of 0.42 (95% CI [0.05, 0.49]). Within this model:

  • The effect of b Intercept[1] (Median = 1.53, 95% CI [-0.45, 3.52]) has a 93.53% probability of being positive (> 0), 92.92% of being significant (> 0.05), and 88.72% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 13651)
  • The effect of b Intercept[2] (Median = 1.92, 95% CI [-0.03, 3.93]) has a 97.28% probability of being positive (> 0), 96.85% of being significant (> 0.05), and 94.70% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 13661)
  • The effect of b IF 5year (Median = 0.46, 95% CI [-0.05, 1.02]) has a 96.20% probability of being positive (> 0), 94.27% of being significant (> 0.05), and 72.47% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 14627)

Following the Sequential Effect eXistence and sIgnificance Testing (SEXIT) framework, we report the median of the posterior distribution and its 95% CI (Highest Density Interval), along the probability of direction (pd), the probability of significance and the probability of being large. The thresholds beyond which the effect is considered as significant (i.e., non-negligible) and large are |0.05| and |0.30|. Convergence and stability of the Bayesian sampling has been assessed using R-hat, which should be below 1.01 (Vehtari et al., 2019), and Effective Sample Size (ESS), which should be greater than 1000 (Burkner, 2017)._, _We fitted a Bayesian logistic mixed model (estimated using MCMC sampling with 4 chains of 10000 iterations and a warmup of 5000) to predict comp_mthds_avail with IF_5year (formula: comp_mthds_avail ~ IF_5year). The model included assignee as random effect (formula: ~1 | assignee). Priors over parameters were set as normal (mean = 0.00, SD = 1.00) distributions. The model’s explanatory power is weak (R2 = 0.02, 95% CI [1.35e-04, 0.11]) and the part related to the fixed effects alone (marginal R2) is of 0.42 (95% CI [0.05, 0.49]). Within this model:

  • The effect of b Intercept[1] (Median = 1.53, 95% CI [-0.45, 3.52]) has a 93.53% probability of being positive (> 0), 92.92% of being significant (> 0.05), and 88.72% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 13651)
  • The effect of b Intercept[2] (Median = 1.92, 95% CI [-0.03, 3.93]) has a 97.28% probability of being positive (> 0), 96.85% of being significant (> 0.05), and 94.70% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 13661)
  • The effect of b IF 5year (Median = 0.46, 95% CI [-0.05, 1.02]) has a 96.20% probability of being positive (> 0), 94.27% of being significant (> 0.05), and 72.47% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 14627)

Following the Sequential Effect eXistence and sIgnificance Testing (SEXIT) framework, we report the median of the posterior distribution and its 95% CI (Highest Density Interval), along the probability of direction (pd), the probability of significance and the probability of being large. The thresholds beyond which the effect is considered as significant (i.e., non-negligible) and large are |0.05| and |0.30|. Convergence and stability of the Bayesian sampling has been assessed using R-hat, which should be below 1.01 (Vehtari et al., 2019), and Effective Sample Size (ESS), which should be greater than 1000 (Burkner, 2017)._, _We fitted a Bayesian logistic mixed model (estimated using MCMC sampling with 4 chains of 10000 iterations and a warmup of 5000) to predict comp_mthds_avail with IF_5year (formula: comp_mthds_avail ~ IF_5year). The model included assignee as random effect (formula: ~1 | assignee). Priors over parameters were set as normal (mean = 0.00, SD = 1.00) distributions. The model’s explanatory power is weak (R2 = 0.02, 95% CI [1.35e-04, 0.11]) and the part related to the fixed effects alone (marginal R2) is of 0.42 (95% CI [0.05, 0.49]). Within this model:

  • The effect of b Intercept[1] (Median = 1.53, 95% CI [-0.45, 3.52]) has a 93.53% probability of being positive (> 0), 92.92% of being significant (> 0.05), and 88.72% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 13651)
  • The effect of b Intercept[2] (Median = 1.92, 95% CI [-0.03, 3.93]) has a 97.28% probability of being positive (> 0), 96.85% of being significant (> 0.05), and 94.70% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 13661)
  • The effect of b IF 5year (Median = 0.46, 95% CI [-0.05, 1.02]) has a 96.20% probability of being positive (> 0), 94.27% of being significant (> 0.05), and 72.47% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 14627)

Following the Sequential Effect eXistence and sIgnificance Testing (SEXIT) framework, we report the median of the posterior distribution and its 95% CI (Highest Density Interval), along the probability of direction (pd), the probability of significance and the probability of being large. The thresholds beyond which the effect is considered as significant (i.e., non-negligible) and large are |0.05| and |0.30|. Convergence and stability of the Bayesian sampling has been assessed using R-hat, which should be below 1.01 (Vehtari et al., 2019), and Effective Sample Size (ESS), which should be greater than 1000 (Burkner, 2017)._, _We fitted a Bayesian logistic mixed model (estimated using MCMC sampling with 4 chains of 10000 iterations and a warmup of 5000) to predict comp_mthds_avail with IF_5year (formula: comp_mthds_avail ~ IF_5year). The model included assignee as random effect (formula: ~1 | assignee). Priors over parameters were set as normal (mean = 0.00, SD = 1.00) distributions. The model’s explanatory power is weak (R2 = 0.02, 95% CI [1.35e-04, 0.11]) and the part related to the fixed effects alone (marginal R2) is of 0.42 (95% CI [0.05, 0.49]). Within this model:

  • The effect of b Intercept[1] (Median = 1.53, 95% CI [-0.45, 3.52]) has a 93.53% probability of being positive (> 0), 92.92% of being significant (> 0.05), and 88.72% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 13651)
  • The effect of b Intercept[2] (Median = 1.92, 95% CI [-0.03, 3.93]) has a 97.28% probability of being positive (> 0), 96.85% of being significant (> 0.05), and 94.70% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 13661)
  • The effect of b IF 5year (Median = 0.46, 95% CI [-0.05, 1.02]) has a 96.20% probability of being positive (> 0), 94.27% of being significant (> 0.05), and 72.47% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 14627)

Following the Sequential Effect eXistence and sIgnificance Testing (SEXIT) framework, we report the median of the posterior distribution and its 95% CI (Highest Density Interval), along the probability of direction (pd), the probability of significance and the probability of being large. The thresholds beyond which the effect is considered as significant (i.e., non-negligible) and large are |0.05| and |0.30|. Convergence and stability of the Bayesian sampling has been assessed using R-hat, which should be below 1.01 (Vehtari et al., 2019), and Effective Sample Size (ESS), which should be greater than 1000 (Burkner, 2017)._, _We fitted a Bayesian logistic mixed model (estimated using MCMC sampling with 4 chains of 10000 iterations and a warmup of 5000) to predict comp_mthds_avail with IF_5year (formula: comp_mthds_avail ~ IF_5year). The model included assignee as random effect (formula: ~1 | assignee). Priors over parameters were set as normal (mean = 0.00, SD = 1.00) distributions. The model’s explanatory power is weak (R2 = 0.02, 95% CI [1.35e-04, 0.11]) and the part related to the fixed effects alone (marginal R2) is of 0.42 (95% CI [0.05, 0.49]). Within this model:

  • The effect of b Intercept[1] (Median = 1.53, 95% CI [-0.45, 3.52]) has a 93.53% probability of being positive (> 0), 92.92% of being significant (> 0.05), and 88.72% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 13651)
  • The effect of b Intercept[2] (Median = 1.92, 95% CI [-0.03, 3.93]) has a 97.28% probability of being positive (> 0), 96.85% of being significant (> 0.05), and 94.70% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 13661)
  • The effect of b IF 5year (Median = 0.46, 95% CI [-0.05, 1.02]) has a 96.20% probability of being positive (> 0), 94.27% of being significant (> 0.05), and 72.47% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 14627)

Following the Sequential Effect eXistence and sIgnificance Testing (SEXIT) framework, we report the median of the posterior distribution and its 95% CI (Highest Density Interval), along the probability of direction (pd), the probability of significance and the probability of being large. The thresholds beyond which the effect is considered as significant (i.e., non-negligible) and large are |0.05| and |0.30|. Convergence and stability of the Bayesian sampling has been assessed using R-hat, which should be below 1.01 (Vehtari et al., 2019), and Effective Sample Size (ESS), which should be greater than 1000 (Burkner, 2017)._, _We fitted a Bayesian logistic mixed model (estimated using MCMC sampling with 4 chains of 10000 iterations and a warmup of 5000) to predict comp_mthds_avail with IF_5year (formula: comp_mthds_avail ~ IF_5year). The model included assignee as random effect (formula: ~1 | assignee). Priors over parameters were set as normal (mean = 0.00, SD = 1.00) distributions. The model’s explanatory power is weak (R2 = 0.02, 95% CI [1.35e-04, 0.11]) and the part related to the fixed effects alone (marginal R2) is of 0.42 (95% CI [0.05, 0.49]). Within this model:

  • The effect of b Intercept[1] (Median = 1.53, 95% CI [-0.45, 3.52]) has a 93.53% probability of being positive (> 0), 92.92% of being significant (> 0.05), and 88.72% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 13651)
  • The effect of b Intercept[2] (Median = 1.92, 95% CI [-0.03, 3.93]) has a 97.28% probability of being positive (> 0), 96.85% of being significant (> 0.05), and 94.70% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 13661)
  • The effect of b IF 5year (Median = 0.46, 95% CI [-0.05, 1.02]) has a 96.20% probability of being positive (> 0), 94.27% of being significant (> 0.05), and 72.47% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 14627)

Following the Sequential Effect eXistence and sIgnificance Testing (SEXIT) framework, we report the median of the posterior distribution and its 95% CI (Highest Density Interval), along the probability of direction (pd), the probability of significance and the probability of being large. The thresholds beyond which the effect is considered as significant (i.e., non-negligible) and large are |0.05| and |0.30|. Convergence and stability of the Bayesian sampling has been assessed using R-hat, which should be below 1.01 (Vehtari et al., 2019), and Effective Sample Size (ESS), which should be greater than 1000 (Burkner, 2017)._, _We fitted a Bayesian logistic mixed model (estimated using MCMC sampling with 4 chains of 10000 iterations and a warmup of 5000) to predict comp_mthds_avail with IF_5year (formula: comp_mthds_avail ~ IF_5year). The model included assignee as random effect (formula: ~1 | assignee). Priors over parameters were set as normal (mean = 0.00, SD = 1.00) distributions. The model’s explanatory power is weak (R2 = 0.02, 95% CI [1.35e-04, 0.11]) and the part related to the fixed effects alone (marginal R2) is of 0.42 (95% CI [0.05, 0.49]). Within this model:

  • The effect of b Intercept[1] (Median = 1.53, 95% CI [-0.45, 3.52]) has a 93.53% probability of being positive (> 0), 92.92% of being significant (> 0.05), and 88.72% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 13651)
  • The effect of b Intercept[2] (Median = 1.92, 95% CI [-0.03, 3.93]) has a 97.28% probability of being positive (> 0), 96.85% of being significant (> 0.05), and 94.70% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 13661)
  • The effect of b IF 5year (Median = 0.46, 95% CI [-0.05, 1.02]) has a 96.20% probability of being positive (> 0), 94.27% of being significant (> 0.05), and 72.47% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 14627)

Following the Sequential Effect eXistence and sIgnificance Testing (SEXIT) framework, we report the median of the posterior distribution and its 95% CI (Highest Density Interval), along the probability of direction (pd), the probability of significance and the probability of being large. The thresholds beyond which the effect is considered as significant (i.e., non-negligible) and large are |0.05| and |0.30|. Convergence and stability of the Bayesian sampling has been assessed using R-hat, which should be below 1.01 (Vehtari et al., 2019), and Effective Sample Size (ESS), which should be greater than 1000 (Burkner, 2017)._, _We fitted a Bayesian logistic mixed model (estimated using MCMC sampling with 4 chains of 10000 iterations and a warmup of 5000) to predict comp_mthds_avail with IF_5year (formula: comp_mthds_avail ~ IF_5year). The model included assignee as random effect (formula: ~1 | assignee). Priors over parameters were set as normal (mean = 0.00, SD = 1.00) distributions. The model’s explanatory power is weak (R2 = 0.02, 95% CI [1.35e-04, 0.11]) and the part related to the fixed effects alone (marginal R2) is of 0.42 (95% CI [0.05, 0.49]). Within this model:

  • The effect of b Intercept[1] (Median = 1.53, 95% CI [-0.45, 3.52]) has a 93.53% probability of being positive (> 0), 92.92% of being significant (> 0.05), and 88.72% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 13651)
  • The effect of b Intercept[2] (Median = 1.92, 95% CI [-0.03, 3.93]) has a 97.28% probability of being positive (> 0), 96.85% of being significant (> 0.05), and 94.70% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 13661)
  • The effect of b IF 5year (Median = 0.46, 95% CI [-0.05, 1.02]) has a 96.20% probability of being positive (> 0), 94.27% of being significant (> 0.05), and 72.47% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 14627)

Following the Sequential Effect eXistence and sIgnificance Testing (SEXIT) framework, we report the median of the posterior distribution and its 95% CI (Highest Density Interval), along the probability of direction (pd), the probability of significance and the probability of being large. The thresholds beyond which the effect is considered as significant (i.e., non-negligible) and large are |0.05| and |0.30|. Convergence and stability of the Bayesian sampling has been assessed using R-hat, which should be below 1.01 (Vehtari et al., 2019), and Effective Sample Size (ESS), which should be greater than 1000 (Burkner, 2017)._, _We fitted a Bayesian logistic mixed model (estimated using MCMC sampling with 4 chains of 10000 iterations and a warmup of 5000) to predict comp_mthds_avail with IF_5year (formula: comp_mthds_avail ~ IF_5year). The model included assignee as random effect (formula: ~1 | assignee). Priors over parameters were set as normal (mean = 0.00, SD = 1.00) distributions. The model’s explanatory power is weak (R2 = 0.02, 95% CI [1.35e-04, 0.11]) and the part related to the fixed effects alone (marginal R2) is of 0.42 (95% CI [0.05, 0.49]). Within this model:

  • The effect of b Intercept[1] (Median = 1.53, 95% CI [-0.45, 3.52]) has a 93.53% probability of being positive (> 0), 92.92% of being significant (> 0.05), and 88.72% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 13651)
  • The effect of b Intercept[2] (Median = 1.92, 95% CI [-0.03, 3.93]) has a 97.28% probability of being positive (> 0), 96.85% of being significant (> 0.05), and 94.70% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 13661)
  • The effect of b IF 5year (Median = 0.46, 95% CI [-0.05, 1.02]) has a 96.20% probability of being positive (> 0), 94.27% of being significant (> 0.05), and 72.47% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 14627)

Following the Sequential Effect eXistence and sIgnificance Testing (SEXIT) framework, we report the median of the posterior distribution and its 95% CI (Highest Density Interval), along the probability of direction (pd), the probability of significance and the probability of being large. The thresholds beyond which the effect is considered as significant (i.e., non-negligible) and large are |0.05| and |0.30|. Convergence and stability of the Bayesian sampling has been assessed using R-hat, which should be below 1.01 (Vehtari et al., 2019), and Effective Sample Size (ESS), which should be greater than 1000 (Burkner, 2017)._ and _We fitted a Bayesian logistic mixed model (estimated using MCMC sampling with 4 chains of 10000 iterations and a warmup of 5000) to predict comp_mthds_avail with IF_5year (formula: comp_mthds_avail ~ IF_5year). The model included assignee as random effect (formula: ~1 | assignee). Priors over parameters were set as student_t (location = 0.00, scale = 2.50) distributions. The model’s explanatory power is weak (R2 = 0.02, 95% CI [1.35e-04, 0.11]) and the part related to the fixed effects alone (marginal R2) is of 0.42 (95% CI [0.05, 0.49]). Within this model:

  • The effect of b Intercept[1] (Median = 1.53, 95% CI [-0.45, 3.52]) has a 93.53% probability of being positive (> 0), 92.92% of being significant (> 0.05), and 88.72% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 13651)
  • The effect of b Intercept[2] (Median = 1.92, 95% CI [-0.03, 3.93]) has a 97.28% probability of being positive (> 0), 96.85% of being significant (> 0.05), and 94.70% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 13661)
  • The effect of b IF 5year (Median = 0.46, 95% CI [-0.05, 1.02]) has a 96.20% probability of being positive (> 0), 94.27% of being significant (> 0.05), and 72.47% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 14627)

Following the Sequential Effect eXistence and sIgnificance Testing (SEXIT) framework, we report the median of the posterior distribution and its 95% CI (Highest Density Interval), along the probability of direction (pd), the probability of significance and the probability of being large. The thresholds beyond which the effect is considered as significant (i.e., non-negligible) and large are |0.05| and |0.30|. Convergence and stability of the Bayesian sampling has been assessed using R-hat, which should be below 1.01 (Vehtari et al., 2019), and Effective Sample Size (ESS), which should be greater than 1000 (Burkner, 2017)._


m_h1_es <- report_effectsize(m_h1)
#> Start sampling

Data Availability

Test for any effects of the five year impact factor on the data’s availability.

rrpp <- import_notes()
rrpp <- drop_na(rrpp, data_avail)

m_h2 <-
  brm(
    formula = data_avail ~ IF_5year +
      (1 | assignee),
    data = rrpp,
    seed = 27,
    prior = priors,
    family = cumulative(link = "logit"),
    control = list(adapt_delta = 0.99),
    iter = 10000,
    chains = 4
  )
#> Compiling Stan program...
#> Start sampling

summary(m_h2)
#>  Family: cumulative 
#>   Links: mu = logit; disc = identity 
#> Formula: data_avail ~ IF_5year + (1 | assignee) 
#>    Data: rrpp (Number of observations: 448) 
#>   Draws: 4 chains, each with iter = 10000; warmup = 5000; thin = 1;
#>          total post-warmup draws = 20000
#> 
#> Group-Level Effects: 
#> ~assignee (Number of levels: 5) 
#>               Estimate Est.Error l-95% CI u-95% CI Rhat Bulk_ESS Tail_ESS
#> sd(Intercept)     2.16      1.30     0.33     5.37 1.00     2873     3374
#> 
#> Population-Level Effects: 
#>              Estimate Est.Error l-95% CI u-95% CI Rhat Bulk_ESS Tail_ESS
#> Intercept[1]     0.84      0.67    -0.52     2.04 1.00     4267     7337
#> Intercept[2]     1.09      0.67    -0.26     2.30 1.00     4304     7608
#> Intercept[3]     1.53      0.67     0.18     2.73 1.00     4335     6953
#> IF_5year         0.15      0.08    -0.01     0.30 1.00    14647    12751
#> 
#> Family Specific Parameters: 
#>      Estimate Est.Error l-95% CI u-95% CI Rhat Bulk_ESS Tail_ESS
#> disc     1.00      0.00     1.00     1.00   NA       NA       NA
#> 
#> Draws were sampled using sampling(NUTS). For each parameter, Bulk_ESS
#> and Tail_ESS are effective sample size measures, and Rhat is the potential
#> scale reduction factor on split chains (at convergence, Rhat = 1).

plot(m_h2)


pp_check(m_h2, type = "bars", draws = 50)
#> Using 10 posterior draws for ppc type 'bars' by default.
#> Warning: The following arguments were unrecognized and ignored: draws


plot(equivalence_test(m_h2))
#> Picking joint bandwidth of 0.058
#> Warning: Removed 4000 rows containing non-finite values
#> (`stat_density_ridges()`).


pander(m_h2_report <- report(m_h2))
#> Warning: Predictions are treated as continuous variables in 'bayes_R2' which is
#> likely invalid for ordinal families.
#> Warning: Predictions are treated as continuous variables in 'bayes_R2' which is
#> likely invalid for ordinal families.
#> Start sampling
#> Warning: Predictions are treated as continuous variables in 'bayes_R2' which is
#> likely invalid for ordinal families.

#> Warning: Predictions are treated as continuous variables in 'bayes_R2' which is
#> likely invalid for ordinal families.

_We fitted a Bayesian logistic mixed model (estimated using MCMC sampling with 4 chains of 10000 iterations and a warmup of 5000) to predict data_avail with IF_5year (formula: data_avail ~ IF_5year). The model included assignee as random effect (formula: ~1 | assignee). Priors over parameters were set as normal (mean = 0.00, SD = 1.00) distributions. The model’s explanatory power is weak (R2 = 0.03, 95% CI [7.96e-03, 0.06]) and the part related to the fixed effects alone (marginal R2) is of 0.02 (95% CI [3.91e-10, 0.07]). Within this model:

  • The effect of b Intercept[1] (Median = 0.85, 95% CI [-0.52, 2.04]) has a 89.17% probability of being positive (> 0), 87.71% of being significant (> 0.05), and 78.25% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 14614)
  • The effect of b Intercept[2] (Median = 1.11, 95% CI [-0.26, 2.30]) has a 94.50% probability of being positive (> 0), 93.73% of being significant (> 0.05), and 87.67% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 4325)
  • The effect of b Intercept[3] (Median = 1.54, 95% CI [0.18, 2.73]) has a 98.71% probability of being positive (> 0), 98.48% of being significant (> 0.05), and 96.35% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 4363)
  • The effect of b IF 5year (Median = 0.15, 95% CI [-6.48e-03, 0.30]) has a 96.95% probability of being positive (> 0), 89.42% of being significant (> 0.05), and 2.37% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 4390)

Following the Sequential Effect eXistence and sIgnificance Testing (SEXIT) framework, we report the median of the posterior distribution and its 95% CI (Highest Density Interval), along the probability of direction (pd), the probability of significance and the probability of being large. The thresholds beyond which the effect is considered as significant (i.e., non-negligible) and large are |0.05| and |0.30|. Convergence and stability of the Bayesian sampling has been assessed using R-hat, which should be below 1.01 (Vehtari et al., 2019), and Effective Sample Size (ESS), which should be greater than 1000 (Burkner, 2017)._, _We fitted a Bayesian logistic mixed model (estimated using MCMC sampling with 4 chains of 10000 iterations and a warmup of 5000) to predict data_avail with IF_5year (formula: data_avail ~ IF_5year). The model included assignee as random effect (formula: ~1 | assignee). Priors over parameters were set as normal (mean = 0.00, SD = 1.00) distributions. The model’s explanatory power is weak (R2 = 0.03, 95% CI [7.96e-03, 0.06]) and the part related to the fixed effects alone (marginal R2) is of 0.02 (95% CI [3.91e-10, 0.07]). Within this model:

  • The effect of b Intercept[1] (Median = 0.85, 95% CI [-0.52, 2.04]) has a 89.17% probability of being positive (> 0), 87.71% of being significant (> 0.05), and 78.25% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 14614)
  • The effect of b Intercept[2] (Median = 1.11, 95% CI [-0.26, 2.30]) has a 94.50% probability of being positive (> 0), 93.73% of being significant (> 0.05), and 87.67% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 4325)
  • The effect of b Intercept[3] (Median = 1.54, 95% CI [0.18, 2.73]) has a 98.71% probability of being positive (> 0), 98.48% of being significant (> 0.05), and 96.35% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 4363)
  • The effect of b IF 5year (Median = 0.15, 95% CI [-6.48e-03, 0.30]) has a 96.95% probability of being positive (> 0), 89.42% of being significant (> 0.05), and 2.37% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 4390)

Following the Sequential Effect eXistence and sIgnificance Testing (SEXIT) framework, we report the median of the posterior distribution and its 95% CI (Highest Density Interval), along the probability of direction (pd), the probability of significance and the probability of being large. The thresholds beyond which the effect is considered as significant (i.e., non-negligible) and large are |0.05| and |0.30|. Convergence and stability of the Bayesian sampling has been assessed using R-hat, which should be below 1.01 (Vehtari et al., 2019), and Effective Sample Size (ESS), which should be greater than 1000 (Burkner, 2017)._, _We fitted a Bayesian logistic mixed model (estimated using MCMC sampling with 4 chains of 10000 iterations and a warmup of 5000) to predict data_avail with IF_5year (formula: data_avail ~ IF_5year). The model included assignee as random effect (formula: ~1 | assignee). Priors over parameters were set as normal (mean = 0.00, SD = 1.00) distributions. The model’s explanatory power is weak (R2 = 0.03, 95% CI [7.96e-03, 0.06]) and the part related to the fixed effects alone (marginal R2) is of 0.02 (95% CI [3.91e-10, 0.07]). Within this model:

  • The effect of b Intercept[1] (Median = 0.85, 95% CI [-0.52, 2.04]) has a 89.17% probability of being positive (> 0), 87.71% of being significant (> 0.05), and 78.25% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 14614)
  • The effect of b Intercept[2] (Median = 1.11, 95% CI [-0.26, 2.30]) has a 94.50% probability of being positive (> 0), 93.73% of being significant (> 0.05), and 87.67% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 4325)
  • The effect of b Intercept[3] (Median = 1.54, 95% CI [0.18, 2.73]) has a 98.71% probability of being positive (> 0), 98.48% of being significant (> 0.05), and 96.35% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 4363)
  • The effect of b IF 5year (Median = 0.15, 95% CI [-6.48e-03, 0.30]) has a 96.95% probability of being positive (> 0), 89.42% of being significant (> 0.05), and 2.37% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 4390)

Following the Sequential Effect eXistence and sIgnificance Testing (SEXIT) framework, we report the median of the posterior distribution and its 95% CI (Highest Density Interval), along the probability of direction (pd), the probability of significance and the probability of being large. The thresholds beyond which the effect is considered as significant (i.e., non-negligible) and large are |0.05| and |0.30|. Convergence and stability of the Bayesian sampling has been assessed using R-hat, which should be below 1.01 (Vehtari et al., 2019), and Effective Sample Size (ESS), which should be greater than 1000 (Burkner, 2017)._, _We fitted a Bayesian logistic mixed model (estimated using MCMC sampling with 4 chains of 10000 iterations and a warmup of 5000) to predict data_avail with IF_5year (formula: data_avail ~ IF_5year). The model included assignee as random effect (formula: ~1 | assignee). Priors over parameters were set as normal (mean = 0.00, SD = 1.00) distributions. The model’s explanatory power is weak (R2 = 0.03, 95% CI [7.96e-03, 0.06]) and the part related to the fixed effects alone (marginal R2) is of 0.02 (95% CI [3.91e-10, 0.07]). Within this model:

  • The effect of b Intercept[1] (Median = 0.85, 95% CI [-0.52, 2.04]) has a 89.17% probability of being positive (> 0), 87.71% of being significant (> 0.05), and 78.25% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 14614)
  • The effect of b Intercept[2] (Median = 1.11, 95% CI [-0.26, 2.30]) has a 94.50% probability of being positive (> 0), 93.73% of being significant (> 0.05), and 87.67% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 4325)
  • The effect of b Intercept[3] (Median = 1.54, 95% CI [0.18, 2.73]) has a 98.71% probability of being positive (> 0), 98.48% of being significant (> 0.05), and 96.35% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 4363)
  • The effect of b IF 5year (Median = 0.15, 95% CI [-6.48e-03, 0.30]) has a 96.95% probability of being positive (> 0), 89.42% of being significant (> 0.05), and 2.37% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 4390)

Following the Sequential Effect eXistence and sIgnificance Testing (SEXIT) framework, we report the median of the posterior distribution and its 95% CI (Highest Density Interval), along the probability of direction (pd), the probability of significance and the probability of being large. The thresholds beyond which the effect is considered as significant (i.e., non-negligible) and large are |0.05| and |0.30|. Convergence and stability of the Bayesian sampling has been assessed using R-hat, which should be below 1.01 (Vehtari et al., 2019), and Effective Sample Size (ESS), which should be greater than 1000 (Burkner, 2017)._, _We fitted a Bayesian logistic mixed model (estimated using MCMC sampling with 4 chains of 10000 iterations and a warmup of 5000) to predict data_avail with IF_5year (formula: data_avail ~ IF_5year). The model included assignee as random effect (formula: ~1 | assignee). Priors over parameters were set as normal (mean = 0.00, SD = 1.00) distributions. The model’s explanatory power is weak (R2 = 0.03, 95% CI [7.96e-03, 0.06]) and the part related to the fixed effects alone (marginal R2) is of 0.02 (95% CI [3.91e-10, 0.07]). Within this model:

  • The effect of b Intercept[1] (Median = 0.85, 95% CI [-0.52, 2.04]) has a 89.17% probability of being positive (> 0), 87.71% of being significant (> 0.05), and 78.25% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 14614)
  • The effect of b Intercept[2] (Median = 1.11, 95% CI [-0.26, 2.30]) has a 94.50% probability of being positive (> 0), 93.73% of being significant (> 0.05), and 87.67% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 4325)
  • The effect of b Intercept[3] (Median = 1.54, 95% CI [0.18, 2.73]) has a 98.71% probability of being positive (> 0), 98.48% of being significant (> 0.05), and 96.35% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 4363)
  • The effect of b IF 5year (Median = 0.15, 95% CI [-6.48e-03, 0.30]) has a 96.95% probability of being positive (> 0), 89.42% of being significant (> 0.05), and 2.37% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 4390)

Following the Sequential Effect eXistence and sIgnificance Testing (SEXIT) framework, we report the median of the posterior distribution and its 95% CI (Highest Density Interval), along the probability of direction (pd), the probability of significance and the probability of being large. The thresholds beyond which the effect is considered as significant (i.e., non-negligible) and large are |0.05| and |0.30|. Convergence and stability of the Bayesian sampling has been assessed using R-hat, which should be below 1.01 (Vehtari et al., 2019), and Effective Sample Size (ESS), which should be greater than 1000 (Burkner, 2017)._, _We fitted a Bayesian logistic mixed model (estimated using MCMC sampling with 4 chains of 10000 iterations and a warmup of 5000) to predict data_avail with IF_5year (formula: data_avail ~ IF_5year). The model included assignee as random effect (formula: ~1 | assignee). Priors over parameters were set as normal (mean = 0.00, SD = 1.00) distributions. The model’s explanatory power is weak (R2 = 0.03, 95% CI [7.96e-03, 0.06]) and the part related to the fixed effects alone (marginal R2) is of 0.02 (95% CI [3.91e-10, 0.07]). Within this model:

  • The effect of b Intercept[1] (Median = 0.85, 95% CI [-0.52, 2.04]) has a 89.17% probability of being positive (> 0), 87.71% of being significant (> 0.05), and 78.25% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 14614)
  • The effect of b Intercept[2] (Median = 1.11, 95% CI [-0.26, 2.30]) has a 94.50% probability of being positive (> 0), 93.73% of being significant (> 0.05), and 87.67% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 4325)
  • The effect of b Intercept[3] (Median = 1.54, 95% CI [0.18, 2.73]) has a 98.71% probability of being positive (> 0), 98.48% of being significant (> 0.05), and 96.35% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 4363)
  • The effect of b IF 5year (Median = 0.15, 95% CI [-6.48e-03, 0.30]) has a 96.95% probability of being positive (> 0), 89.42% of being significant (> 0.05), and 2.37% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 4390)

Following the Sequential Effect eXistence and sIgnificance Testing (SEXIT) framework, we report the median of the posterior distribution and its 95% CI (Highest Density Interval), along the probability of direction (pd), the probability of significance and the probability of being large. The thresholds beyond which the effect is considered as significant (i.e., non-negligible) and large are |0.05| and |0.30|. Convergence and stability of the Bayesian sampling has been assessed using R-hat, which should be below 1.01 (Vehtari et al., 2019), and Effective Sample Size (ESS), which should be greater than 1000 (Burkner, 2017)._, _We fitted a Bayesian logistic mixed model (estimated using MCMC sampling with 4 chains of 10000 iterations and a warmup of 5000) to predict data_avail with IF_5year (formula: data_avail ~ IF_5year). The model included assignee as random effect (formula: ~1 | assignee). Priors over parameters were set as normal (mean = 0.00, SD = 1.00) distributions. The model’s explanatory power is weak (R2 = 0.03, 95% CI [7.96e-03, 0.06]) and the part related to the fixed effects alone (marginal R2) is of 0.02 (95% CI [3.91e-10, 0.07]). Within this model:

  • The effect of b Intercept[1] (Median = 0.85, 95% CI [-0.52, 2.04]) has a 89.17% probability of being positive (> 0), 87.71% of being significant (> 0.05), and 78.25% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 14614)
  • The effect of b Intercept[2] (Median = 1.11, 95% CI [-0.26, 2.30]) has a 94.50% probability of being positive (> 0), 93.73% of being significant (> 0.05), and 87.67% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 4325)
  • The effect of b Intercept[3] (Median = 1.54, 95% CI [0.18, 2.73]) has a 98.71% probability of being positive (> 0), 98.48% of being significant (> 0.05), and 96.35% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 4363)
  • The effect of b IF 5year (Median = 0.15, 95% CI [-6.48e-03, 0.30]) has a 96.95% probability of being positive (> 0), 89.42% of being significant (> 0.05), and 2.37% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 4390)

Following the Sequential Effect eXistence and sIgnificance Testing (SEXIT) framework, we report the median of the posterior distribution and its 95% CI (Highest Density Interval), along the probability of direction (pd), the probability of significance and the probability of being large. The thresholds beyond which the effect is considered as significant (i.e., non-negligible) and large are |0.05| and |0.30|. Convergence and stability of the Bayesian sampling has been assessed using R-hat, which should be below 1.01 (Vehtari et al., 2019), and Effective Sample Size (ESS), which should be greater than 1000 (Burkner, 2017)._, _We fitted a Bayesian logistic mixed model (estimated using MCMC sampling with 4 chains of 10000 iterations and a warmup of 5000) to predict data_avail with IF_5year (formula: data_avail ~ IF_5year). The model included assignee as random effect (formula: ~1 | assignee). Priors over parameters were set as normal (mean = 0.00, SD = 1.00) distributions. The model’s explanatory power is weak (R2 = 0.03, 95% CI [7.96e-03, 0.06]) and the part related to the fixed effects alone (marginal R2) is of 0.02 (95% CI [3.91e-10, 0.07]). Within this model:

  • The effect of b Intercept[1] (Median = 0.85, 95% CI [-0.52, 2.04]) has a 89.17% probability of being positive (> 0), 87.71% of being significant (> 0.05), and 78.25% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 14614)
  • The effect of b Intercept[2] (Median = 1.11, 95% CI [-0.26, 2.30]) has a 94.50% probability of being positive (> 0), 93.73% of being significant (> 0.05), and 87.67% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 4325)
  • The effect of b Intercept[3] (Median = 1.54, 95% CI [0.18, 2.73]) has a 98.71% probability of being positive (> 0), 98.48% of being significant (> 0.05), and 96.35% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 4363)
  • The effect of b IF 5year (Median = 0.15, 95% CI [-6.48e-03, 0.30]) has a 96.95% probability of being positive (> 0), 89.42% of being significant (> 0.05), and 2.37% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 4390)

Following the Sequential Effect eXistence and sIgnificance Testing (SEXIT) framework, we report the median of the posterior distribution and its 95% CI (Highest Density Interval), along the probability of direction (pd), the probability of significance and the probability of being large. The thresholds beyond which the effect is considered as significant (i.e., non-negligible) and large are |0.05| and |0.30|. Convergence and stability of the Bayesian sampling has been assessed using R-hat, which should be below 1.01 (Vehtari et al., 2019), and Effective Sample Size (ESS), which should be greater than 1000 (Burkner, 2017)._, _We fitted a Bayesian logistic mixed model (estimated using MCMC sampling with 4 chains of 10000 iterations and a warmup of 5000) to predict data_avail with IF_5year (formula: data_avail ~ IF_5year). The model included assignee as random effect (formula: ~1 | assignee). Priors over parameters were set as normal (mean = 0.00, SD = 1.00) distributions. The model’s explanatory power is weak (R2 = 0.03, 95% CI [7.96e-03, 0.06]) and the part related to the fixed effects alone (marginal R2) is of 0.02 (95% CI [3.91e-10, 0.07]). Within this model:

  • The effect of b Intercept[1] (Median = 0.85, 95% CI [-0.52, 2.04]) has a 89.17% probability of being positive (> 0), 87.71% of being significant (> 0.05), and 78.25% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 14614)
  • The effect of b Intercept[2] (Median = 1.11, 95% CI [-0.26, 2.30]) has a 94.50% probability of being positive (> 0), 93.73% of being significant (> 0.05), and 87.67% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 4325)
  • The effect of b Intercept[3] (Median = 1.54, 95% CI [0.18, 2.73]) has a 98.71% probability of being positive (> 0), 98.48% of being significant (> 0.05), and 96.35% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 4363)
  • The effect of b IF 5year (Median = 0.15, 95% CI [-6.48e-03, 0.30]) has a 96.95% probability of being positive (> 0), 89.42% of being significant (> 0.05), and 2.37% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 4390)

Following the Sequential Effect eXistence and sIgnificance Testing (SEXIT) framework, we report the median of the posterior distribution and its 95% CI (Highest Density Interval), along the probability of direction (pd), the probability of significance and the probability of being large. The thresholds beyond which the effect is considered as significant (i.e., non-negligible) and large are |0.05| and |0.30|. Convergence and stability of the Bayesian sampling has been assessed using R-hat, which should be below 1.01 (Vehtari et al., 2019), and Effective Sample Size (ESS), which should be greater than 1000 (Burkner, 2017)._, _We fitted a Bayesian logistic mixed model (estimated using MCMC sampling with 4 chains of 10000 iterations and a warmup of 5000) to predict data_avail with IF_5year (formula: data_avail ~ IF_5year). The model included assignee as random effect (formula: ~1 | assignee). Priors over parameters were set as normal (mean = 0.00, SD = 1.00) distributions. The model’s explanatory power is weak (R2 = 0.03, 95% CI [7.96e-03, 0.06]) and the part related to the fixed effects alone (marginal R2) is of 0.02 (95% CI [3.91e-10, 0.07]). Within this model:

  • The effect of b Intercept[1] (Median = 0.85, 95% CI [-0.52, 2.04]) has a 89.17% probability of being positive (> 0), 87.71% of being significant (> 0.05), and 78.25% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 14614)
  • The effect of b Intercept[2] (Median = 1.11, 95% CI [-0.26, 2.30]) has a 94.50% probability of being positive (> 0), 93.73% of being significant (> 0.05), and 87.67% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 4325)
  • The effect of b Intercept[3] (Median = 1.54, 95% CI [0.18, 2.73]) has a 98.71% probability of being positive (> 0), 98.48% of being significant (> 0.05), and 96.35% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 4363)
  • The effect of b IF 5year (Median = 0.15, 95% CI [-6.48e-03, 0.30]) has a 96.95% probability of being positive (> 0), 89.42% of being significant (> 0.05), and 2.37% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 4390)

Following the Sequential Effect eXistence and sIgnificance Testing (SEXIT) framework, we report the median of the posterior distribution and its 95% CI (Highest Density Interval), along the probability of direction (pd), the probability of significance and the probability of being large. The thresholds beyond which the effect is considered as significant (i.e., non-negligible) and large are |0.05| and |0.30|. Convergence and stability of the Bayesian sampling has been assessed using R-hat, which should be below 1.01 (Vehtari et al., 2019), and Effective Sample Size (ESS), which should be greater than 1000 (Burkner, 2017)._, _We fitted a Bayesian logistic mixed model (estimated using MCMC sampling with 4 chains of 10000 iterations and a warmup of 5000) to predict data_avail with IF_5year (formula: data_avail ~ IF_5year). The model included assignee as random effect (formula: ~1 | assignee). Priors over parameters were set as normal (mean = 0.00, SD = 1.00) distributions. The model’s explanatory power is weak (R2 = 0.03, 95% CI [7.96e-03, 0.06]) and the part related to the fixed effects alone (marginal R2) is of 0.02 (95% CI [3.91e-10, 0.07]). Within this model:

  • The effect of b Intercept[1] (Median = 0.85, 95% CI [-0.52, 2.04]) has a 89.17% probability of being positive (> 0), 87.71% of being significant (> 0.05), and 78.25% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 14614)
  • The effect of b Intercept[2] (Median = 1.11, 95% CI [-0.26, 2.30]) has a 94.50% probability of being positive (> 0), 93.73% of being significant (> 0.05), and 87.67% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 4325)
  • The effect of b Intercept[3] (Median = 1.54, 95% CI [0.18, 2.73]) has a 98.71% probability of being positive (> 0), 98.48% of being significant (> 0.05), and 96.35% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 4363)
  • The effect of b IF 5year (Median = 0.15, 95% CI [-6.48e-03, 0.30]) has a 96.95% probability of being positive (> 0), 89.42% of being significant (> 0.05), and 2.37% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 4390)

Following the Sequential Effect eXistence and sIgnificance Testing (SEXIT) framework, we report the median of the posterior distribution and its 95% CI (Highest Density Interval), along the probability of direction (pd), the probability of significance and the probability of being large. The thresholds beyond which the effect is considered as significant (i.e., non-negligible) and large are |0.05| and |0.30|. Convergence and stability of the Bayesian sampling has been assessed using R-hat, which should be below 1.01 (Vehtari et al., 2019), and Effective Sample Size (ESS), which should be greater than 1000 (Burkner, 2017)._, _We fitted a Bayesian logistic mixed model (estimated using MCMC sampling with 4 chains of 10000 iterations and a warmup of 5000) to predict data_avail with IF_5year (formula: data_avail ~ IF_5year). The model included assignee as random effect (formula: ~1 | assignee). Priors over parameters were set as normal (mean = 0.00, SD = 1.00) distributions. The model’s explanatory power is weak (R2 = 0.03, 95% CI [7.96e-03, 0.06]) and the part related to the fixed effects alone (marginal R2) is of 0.02 (95% CI [3.91e-10, 0.07]). Within this model:

  • The effect of b Intercept[1] (Median = 0.85, 95% CI [-0.52, 2.04]) has a 89.17% probability of being positive (> 0), 87.71% of being significant (> 0.05), and 78.25% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 14614)
  • The effect of b Intercept[2] (Median = 1.11, 95% CI [-0.26, 2.30]) has a 94.50% probability of being positive (> 0), 93.73% of being significant (> 0.05), and 87.67% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 4325)
  • The effect of b Intercept[3] (Median = 1.54, 95% CI [0.18, 2.73]) has a 98.71% probability of being positive (> 0), 98.48% of being significant (> 0.05), and 96.35% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 4363)
  • The effect of b IF 5year (Median = 0.15, 95% CI [-6.48e-03, 0.30]) has a 96.95% probability of being positive (> 0), 89.42% of being significant (> 0.05), and 2.37% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 4390)

Following the Sequential Effect eXistence and sIgnificance Testing (SEXIT) framework, we report the median of the posterior distribution and its 95% CI (Highest Density Interval), along the probability of direction (pd), the probability of significance and the probability of being large. The thresholds beyond which the effect is considered as significant (i.e., non-negligible) and large are |0.05| and |0.30|. Convergence and stability of the Bayesian sampling has been assessed using R-hat, which should be below 1.01 (Vehtari et al., 2019), and Effective Sample Size (ESS), which should be greater than 1000 (Burkner, 2017)._, _We fitted a Bayesian logistic mixed model (estimated using MCMC sampling with 4 chains of 10000 iterations and a warmup of 5000) to predict data_avail with IF_5year (formula: data_avail ~ IF_5year). The model included assignee as random effect (formula: ~1 | assignee). Priors over parameters were set as normal (mean = 0.00, SD = 1.00) distributions. The model’s explanatory power is weak (R2 = 0.03, 95% CI [7.96e-03, 0.06]) and the part related to the fixed effects alone (marginal R2) is of 0.02 (95% CI [3.91e-10, 0.07]). Within this model:

  • The effect of b Intercept[1] (Median = 0.85, 95% CI [-0.52, 2.04]) has a 89.17% probability of being positive (> 0), 87.71% of being significant (> 0.05), and 78.25% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 14614)
  • The effect of b Intercept[2] (Median = 1.11, 95% CI [-0.26, 2.30]) has a 94.50% probability of being positive (> 0), 93.73% of being significant (> 0.05), and 87.67% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 4325)
  • The effect of b Intercept[3] (Median = 1.54, 95% CI [0.18, 2.73]) has a 98.71% probability of being positive (> 0), 98.48% of being significant (> 0.05), and 96.35% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 4363)
  • The effect of b IF 5year (Median = 0.15, 95% CI [-6.48e-03, 0.30]) has a 96.95% probability of being positive (> 0), 89.42% of being significant (> 0.05), and 2.37% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 4390)

Following the Sequential Effect eXistence and sIgnificance Testing (SEXIT) framework, we report the median of the posterior distribution and its 95% CI (Highest Density Interval), along the probability of direction (pd), the probability of significance and the probability of being large. The thresholds beyond which the effect is considered as significant (i.e., non-negligible) and large are |0.05| and |0.30|. Convergence and stability of the Bayesian sampling has been assessed using R-hat, which should be below 1.01 (Vehtari et al., 2019), and Effective Sample Size (ESS), which should be greater than 1000 (Burkner, 2017)._, _We fitted a Bayesian logistic mixed model (estimated using MCMC sampling with 4 chains of 10000 iterations and a warmup of 5000) to predict data_avail with IF_5year (formula: data_avail ~ IF_5year). The model included assignee as random effect (formula: ~1 | assignee). Priors over parameters were set as normal (mean = 0.00, SD = 1.00) distributions. The model’s explanatory power is weak (R2 = 0.03, 95% CI [7.96e-03, 0.06]) and the part related to the fixed effects alone (marginal R2) is of 0.02 (95% CI [3.91e-10, 0.07]). Within this model:

  • The effect of b Intercept[1] (Median = 0.85, 95% CI [-0.52, 2.04]) has a 89.17% probability of being positive (> 0), 87.71% of being significant (> 0.05), and 78.25% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 14614)
  • The effect of b Intercept[2] (Median = 1.11, 95% CI [-0.26, 2.30]) has a 94.50% probability of being positive (> 0), 93.73% of being significant (> 0.05), and 87.67% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 4325)
  • The effect of b Intercept[3] (Median = 1.54, 95% CI [0.18, 2.73]) has a 98.71% probability of being positive (> 0), 98.48% of being significant (> 0.05), and 96.35% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 4363)
  • The effect of b IF 5year (Median = 0.15, 95% CI [-6.48e-03, 0.30]) has a 96.95% probability of being positive (> 0), 89.42% of being significant (> 0.05), and 2.37% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 4390)

Following the Sequential Effect eXistence and sIgnificance Testing (SEXIT) framework, we report the median of the posterior distribution and its 95% CI (Highest Density Interval), along the probability of direction (pd), the probability of significance and the probability of being large. The thresholds beyond which the effect is considered as significant (i.e., non-negligible) and large are |0.05| and |0.30|. Convergence and stability of the Bayesian sampling has been assessed using R-hat, which should be below 1.01 (Vehtari et al., 2019), and Effective Sample Size (ESS), which should be greater than 1000 (Burkner, 2017)._, _We fitted a Bayesian logistic mixed model (estimated using MCMC sampling with 4 chains of 10000 iterations and a warmup of 5000) to predict data_avail with IF_5year (formula: data_avail ~ IF_5year). The model included assignee as random effect (formula: ~1 | assignee). Priors over parameters were set as normal (mean = 0.00, SD = 1.00) distributions. The model’s explanatory power is weak (R2 = 0.03, 95% CI [7.96e-03, 0.06]) and the part related to the fixed effects alone (marginal R2) is of 0.02 (95% CI [3.91e-10, 0.07]). Within this model:

  • The effect of b Intercept[1] (Median = 0.85, 95% CI [-0.52, 2.04]) has a 89.17% probability of being positive (> 0), 87.71% of being significant (> 0.05), and 78.25% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 14614)
  • The effect of b Intercept[2] (Median = 1.11, 95% CI [-0.26, 2.30]) has a 94.50% probability of being positive (> 0), 93.73% of being significant (> 0.05), and 87.67% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 4325)
  • The effect of b Intercept[3] (Median = 1.54, 95% CI [0.18, 2.73]) has a 98.71% probability of being positive (> 0), 98.48% of being significant (> 0.05), and 96.35% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 4363)
  • The effect of b IF 5year (Median = 0.15, 95% CI [-6.48e-03, 0.30]) has a 96.95% probability of being positive (> 0), 89.42% of being significant (> 0.05), and 2.37% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 4390)

Following the Sequential Effect eXistence and sIgnificance Testing (SEXIT) framework, we report the median of the posterior distribution and its 95% CI (Highest Density Interval), along the probability of direction (pd), the probability of significance and the probability of being large. The thresholds beyond which the effect is considered as significant (i.e., non-negligible) and large are |0.05| and |0.30|. Convergence and stability of the Bayesian sampling has been assessed using R-hat, which should be below 1.01 (Vehtari et al., 2019), and Effective Sample Size (ESS), which should be greater than 1000 (Burkner, 2017)._, _We fitted a Bayesian logistic mixed model (estimated using MCMC sampling with 4 chains of 10000 iterations and a warmup of 5000) to predict data_avail with IF_5year (formula: data_avail ~ IF_5year). The model included assignee as random effect (formula: ~1 | assignee). Priors over parameters were set as normal (mean = 0.00, SD = 1.00) distributions. The model’s explanatory power is weak (R2 = 0.03, 95% CI [7.96e-03, 0.06]) and the part related to the fixed effects alone (marginal R2) is of 0.02 (95% CI [3.91e-10, 0.07]). Within this model:

  • The effect of b Intercept[1] (Median = 0.85, 95% CI [-0.52, 2.04]) has a 89.17% probability of being positive (> 0), 87.71% of being significant (> 0.05), and 78.25% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 14614)
  • The effect of b Intercept[2] (Median = 1.11, 95% CI [-0.26, 2.30]) has a 94.50% probability of being positive (> 0), 93.73% of being significant (> 0.05), and 87.67% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 4325)
  • The effect of b Intercept[3] (Median = 1.54, 95% CI [0.18, 2.73]) has a 98.71% probability of being positive (> 0), 98.48% of being significant (> 0.05), and 96.35% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 4363)
  • The effect of b IF 5year (Median = 0.15, 95% CI [-6.48e-03, 0.30]) has a 96.95% probability of being positive (> 0), 89.42% of being significant (> 0.05), and 2.37% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 4390)

Following the Sequential Effect eXistence and sIgnificance Testing (SEXIT) framework, we report the median of the posterior distribution and its 95% CI (Highest Density Interval), along the probability of direction (pd), the probability of significance and the probability of being large. The thresholds beyond which the effect is considered as significant (i.e., non-negligible) and large are |0.05| and |0.30|. Convergence and stability of the Bayesian sampling has been assessed using R-hat, which should be below 1.01 (Vehtari et al., 2019), and Effective Sample Size (ESS), which should be greater than 1000 (Burkner, 2017)._ and _We fitted a Bayesian logistic mixed model (estimated using MCMC sampling with 4 chains of 10000 iterations and a warmup of 5000) to predict data_avail with IF_5year (formula: data_avail ~ IF_5year). The model included assignee as random effect (formula: ~1 | assignee). Priors over parameters were set as student_t (location = 0.00, scale = 2.50) distributions. The model’s explanatory power is weak (R2 = 0.03, 95% CI [7.96e-03, 0.06]) and the part related to the fixed effects alone (marginal R2) is of 0.02 (95% CI [3.91e-10, 0.07]). Within this model:

  • The effect of b Intercept[1] (Median = 0.85, 95% CI [-0.52, 2.04]) has a 89.17% probability of being positive (> 0), 87.71% of being significant (> 0.05), and 78.25% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 14614)
  • The effect of b Intercept[2] (Median = 1.11, 95% CI [-0.26, 2.30]) has a 94.50% probability of being positive (> 0), 93.73% of being significant (> 0.05), and 87.67% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 4325)
  • The effect of b Intercept[3] (Median = 1.54, 95% CI [0.18, 2.73]) has a 98.71% probability of being positive (> 0), 98.48% of being significant (> 0.05), and 96.35% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 4363)
  • The effect of b IF 5year (Median = 0.15, 95% CI [-6.48e-03, 0.30]) has a 96.95% probability of being positive (> 0), 89.42% of being significant (> 0.05), and 2.37% of being large (> 0.30). The estimation successfully converged (Rhat = 1.000) and the indices are reliable (ESS = 4390)

Following the Sequential Effect eXistence and sIgnificance Testing (SEXIT) framework, we report the median of the posterior distribution and its 95% CI (Highest Density Interval), along the probability of direction (pd), the probability of significance and the probability of being large. The thresholds beyond which the effect is considered as significant (i.e., non-negligible) and large are |0.05| and |0.30|. Convergence and stability of the Bayesian sampling has been assessed using R-hat, which should be below 1.01 (Vehtari et al., 2019), and Effective Sample Size (ESS), which should be greater than 1000 (Burkner, 2017)._


m_h2_es <- report_effectsize(m_h2)
#> Start sampling

Save Model Objects

Save the model objects for figures in the paper.

save(m_h1, file = here("inst/extdata/m_h1.Rda"))
save(m_h2, file = here("inst/extdata/m_h2.Rda"))

save(m_h1_report, file = here("inst/extdata/m_h1_report.Rda"))
save(m_h2_report, file = here("inst/extdata/m_h2_report.Rda"))

save(m_h1_es, file = here("inst/extdata/m_h1_es.Rda"))
save(m_h2_es, file = here("inst/extdata/m_h2_es.Rda"))

Colophon

sessioninfo::session_info()
#> ─ Session info ───────────────────────────────────────────────────────────────
#>  setting  value
#>  version  R version 4.2.2 (2022-10-31)
#>  os       macOS Ventura 13.1
#>  system   aarch64, darwin20
#>  ui       X11
#>  language en
#>  collate  en_US.UTF-8
#>  ctype    en_US.UTF-8
#>  tz       Australia/Perth
#>  date     2023-01-04
#>  pandoc   2.19.2 @ /opt/homebrew/bin/ (via rmarkdown)
#> 
#> ─ Packages ───────────────────────────────────────────────────────────────────
#>  package                            * version  date (UTC) lib source
#>  abind                                1.4-5    2016-07-21 [2] CRAN (R 4.2.2)
#>  assertthat                           0.2.1    2019-03-21 [2] CRAN (R 4.2.2)
#>  backports                            1.4.1    2021-12-13 [2] CRAN (R 4.2.2)
#>  base64enc                            0.1-3    2015-07-28 [2] CRAN (R 4.2.2)
#>  bayesplot                          * 1.10.0   2022-11-16 [2] CRAN (R 4.2.0)
#>  bayestestR                         * 0.13.0   2022-09-18 [2] CRAN (R 4.2.0)
#>  boot                                 1.3-28.1 2022-11-22 [2] CRAN (R 4.2.2)
#>  bridgesampling                       1.1-2    2021-04-16 [2] CRAN (R 4.2.1)
#>  brms                               * 2.18.0   2022-09-19 [2] CRAN (R 4.2.0)
#>  Brobdingnag                          1.2-9    2022-10-19 [2] CRAN (R 4.2.2)
#>  bslib                                0.4.2    2022-12-16 [2] CRAN (R 4.2.2)
#>  cachem                               1.0.6    2021-08-19 [2] CRAN (R 4.2.2)
#>  callr                                3.7.3    2022-11-02 [2] CRAN (R 4.2.2)
#>  checkmate                            2.1.0    2022-04-21 [2] CRAN (R 4.2.2)
#>  cli                                  3.5.0    2022-12-20 [2] CRAN (R 4.2.2)
#>  coda                                 0.19-4   2020-09-30 [2] CRAN (R 4.2.2)
#>  codetools                            0.2-18   2020-11-04 [2] CRAN (R 4.2.2)
#>  colorspace                           2.0-3    2022-02-21 [2] CRAN (R 4.2.2)
#>  colourpicker                         1.2.0    2022-10-28 [2] CRAN (R 4.2.0)
#>  crayon                               1.5.2    2022-09-29 [2] CRAN (R 4.2.2)
#>  crosstalk                            1.2.0    2021-11-04 [2] CRAN (R 4.2.2)
#>  datawizard                           0.6.5    2022-12-14 [2] CRAN (R 4.2.2)
#>  DBI                                  1.1.3    2022-06-18 [2] CRAN (R 4.2.2)
#>  desc                                 1.4.2    2022-09-08 [2] CRAN (R 4.2.2)
#>  digest                               0.6.31   2022-12-11 [2] CRAN (R 4.2.2)
#>  distributional                       0.3.1    2022-09-02 [2] CRAN (R 4.2.0)
#>  dplyr                                1.0.10   2022-09-01 [2] CRAN (R 4.2.0)
#>  DT                                   0.26     2022-10-19 [2] CRAN (R 4.2.0)
#>  dygraphs                             1.1.1.6  2018-07-11 [2] CRAN (R 4.2.1)
#>  effectsize                           0.8.2    2022-10-31 [2] CRAN (R 4.2.0)
#>  ellipsis                             0.3.2    2021-04-29 [2] CRAN (R 4.2.2)
#>  emmeans                              1.8.3    2022-12-06 [2] CRAN (R 4.2.2)
#>  estimability                         1.4.1    2022-08-05 [2] CRAN (R 4.2.2)
#>  evaluate                             0.19     2022-12-13 [2] CRAN (R 4.2.2)
#>  fansi                                1.0.3    2022-03-24 [2] CRAN (R 4.2.2)
#>  farver                               2.1.1    2022-07-06 [2] CRAN (R 4.2.2)
#>  fastmap                              1.1.0    2021-01-25 [2] CRAN (R 4.2.2)
#>  fs                                   1.5.2    2021-12-08 [2] CRAN (R 4.2.2)
#>  gamm4                                0.2-6    2020-04-03 [2] CRAN (R 4.2.0)
#>  generics                             0.1.3    2022-07-05 [2] CRAN (R 4.2.2)
#>  ggplot2                            * 3.4.0    2022-11-04 [2] CRAN (R 4.2.0)
#>  ggridges                             0.5.4    2022-09-26 [2] CRAN (R 4.2.1)
#>  glue                                 1.6.2    2022-02-24 [2] CRAN (R 4.2.2)
#>  gridExtra                            2.3      2017-09-09 [2] CRAN (R 4.2.2)
#>  gtable                               0.3.1    2022-09-01 [2] CRAN (R 4.2.2)
#>  gtools                               3.9.4    2022-11-27 [2] CRAN (R 4.2.2)
#>  here                               * 1.0.1    2020-12-13 [2] CRAN (R 4.2.0)
#>  highr                                0.10     2022-12-22 [2] CRAN (R 4.2.2)
#>  hms                                  1.1.2    2022-08-19 [2] CRAN (R 4.2.2)
#>  htmltools                            0.5.4    2022-12-07 [2] CRAN (R 4.2.2)
#>  htmlwidgets                          1.6.0    2022-12-15 [2] CRAN (R 4.2.2)
#>  httpuv                               1.6.7    2022-12-14 [2] CRAN (R 4.2.2)
#>  igraph                               1.3.5    2022-09-22 [2] CRAN (R 4.2.0)
#>  inline                               0.3.19   2021-05-31 [2] CRAN (R 4.2.2)
#>  insight                              0.18.8   2022-11-24 [2] CRAN (R 4.2.2)
#>  jquerylib                            0.1.4    2021-04-26 [2] CRAN (R 4.2.2)
#>  jsonlite                             1.8.4    2022-12-06 [2] CRAN (R 4.2.2)
#>  knitr                                1.41     2022-11-18 [2] CRAN (R 4.2.0)
#>  labeling                             0.4.2    2020-10-20 [2] CRAN (R 4.2.2)
#>  later                                1.3.0    2021-08-18 [2] CRAN (R 4.2.2)
#>  lattice                              0.20-45  2021-09-22 [2] CRAN (R 4.2.2)
#>  lifecycle                            1.0.3    2022-10-07 [2] CRAN (R 4.2.2)
#>  lme4                                 1.1-31   2022-11-01 [2] CRAN (R 4.2.0)
#>  loo                                  2.5.1    2022-03-24 [2] CRAN (R 4.2.2)
#>  magrittr                             2.0.3    2022-03-30 [2] CRAN (R 4.2.2)
#>  markdown                             1.4      2022-11-16 [2] CRAN (R 4.2.2)
#>  MASS                                 7.3-58.1 2022-08-03 [2] CRAN (R 4.2.2)
#>  Matrix                               1.5-3    2022-11-11 [2] CRAN (R 4.2.2)
#>  matrixStats                          0.63.0   2022-11-18 [2] CRAN (R 4.2.2)
#>  memoise                              2.0.1    2021-11-26 [2] CRAN (R 4.2.2)
#>  mgcv                                 1.8-41   2022-10-21 [2] CRAN (R 4.2.2)
#>  mime                                 0.12     2021-09-28 [2] CRAN (R 4.2.2)
#>  miniUI                               0.1.1.1  2018-05-18 [2] CRAN (R 4.2.1)
#>  minqa                                1.2.5    2022-10-19 [2] CRAN (R 4.2.0)
#>  multcomp                             1.4-20   2022-08-07 [2] CRAN (R 4.2.2)
#>  munsell                              0.5.0    2018-06-12 [2] CRAN (R 4.2.2)
#>  mvtnorm                              1.1-3    2021-10-08 [2] CRAN (R 4.2.2)
#>  nlme                                 3.1-161  2022-12-15 [2] CRAN (R 4.2.2)
#>  nloptr                               2.0.3    2022-05-26 [2] CRAN (R 4.2.2)
#>  pander                             * 0.6.5    2022-03-18 [2] CRAN (R 4.2.2)
#>  parameters                           0.20.0   2022-11-21 [2] CRAN (R 4.2.0)
#>  performance                          0.10.1   2022-11-25 [2] CRAN (R 4.2.2)
#>  pillar                               1.8.1    2022-08-19 [2] CRAN (R 4.2.2)
#>  pkgbuild                             1.4.0    2022-11-27 [2] CRAN (R 4.2.2)
#>  pkgconfig                            2.0.3    2019-09-22 [2] CRAN (R 4.2.2)
#>  pkgdown                              2.0.7    2022-12-14 [2] CRAN (R 4.2.2)
#>  plyr                                 1.8.8    2022-11-11 [2] CRAN (R 4.2.2)
#>  posterior                            1.3.1    2022-09-06 [2] CRAN (R 4.2.0)
#>  prettyunits                          1.1.1    2020-01-24 [2] CRAN (R 4.2.2)
#>  processx                             3.8.0    2022-10-26 [2] CRAN (R 4.2.2)
#>  projpred                             2.2.2    2022-11-09 [2] CRAN (R 4.2.0)
#>  promises                             1.2.0.1  2021-02-11 [2] CRAN (R 4.2.2)
#>  ps                                   1.7.2    2022-10-26 [2] CRAN (R 4.2.2)
#>  purrr                                1.0.0    2022-12-20 [2] CRAN (R 4.2.2)
#>  R6                                   2.5.1    2021-08-19 [2] CRAN (R 4.2.2)
#>  ragg                                 1.2.4    2022-10-24 [2] CRAN (R 4.2.2)
#>  Rcpp                               * 1.0.9    2022-07-08 [2] CRAN (R 4.2.2)
#>  RcppParallel                         5.1.5    2022-01-05 [2] CRAN (R 4.2.2)
#>  readODS                              1.7.0    2020-07-10 [2] CRAN (R 4.2.2)
#>  readr                                2.1.3    2022-10-01 [2] CRAN (R 4.2.2)
#>  report                             * 0.5.5    2022-08-22 [2] CRAN (R 4.2.0)
#>  Reproducibility.in.Plant.Pathology * 1.0.0    2023-01-04 [1] local
#>  reshape2                             1.4.4    2020-04-09 [2] CRAN (R 4.2.2)
#>  rlang                                1.0.6    2022-09-24 [2] CRAN (R 4.2.2)
#>  rmarkdown                            2.19     2022-12-15 [2] CRAN (R 4.2.2)
#>  rprojroot                            2.0.3    2022-04-02 [2] CRAN (R 4.2.2)
#>  rstan                                2.21.7   2022-09-08 [2] CRAN (R 4.2.2)
#>  rstantools                           2.2.0    2022-04-08 [2] CRAN (R 4.2.2)
#>  rstudioapi                           0.14     2022-08-22 [2] CRAN (R 4.2.2)
#>  sandwich                             3.0-2    2022-06-15 [2] CRAN (R 4.2.2)
#>  sass                                 0.4.4    2022-11-24 [2] CRAN (R 4.2.0)
#>  scales                               1.2.1    2022-08-20 [2] CRAN (R 4.2.2)
#>  see                                  0.7.4    2022-11-26 [2] CRAN (R 4.2.0)
#>  sessioninfo                          1.2.2    2021-12-06 [2] CRAN (R 4.2.2)
#>  shiny                                1.7.4    2022-12-15 [2] CRAN (R 4.2.2)
#>  shinyjs                              2.1.0    2021-12-23 [2] CRAN (R 4.2.1)
#>  shinystan                            2.6.0    2022-03-03 [2] CRAN (R 4.2.0)
#>  shinythemes                          1.2.0    2021-01-25 [2] CRAN (R 4.2.1)
#>  StanHeaders                          2.21.0-7 2020-12-17 [2] CRAN (R 4.2.1)
#>  stringi                              1.7.8    2022-07-11 [2] CRAN (R 4.2.2)
#>  stringr                              1.5.0    2022-12-02 [2] CRAN (R 4.2.2)
#>  survival                             3.4-0    2022-08-09 [2] CRAN (R 4.2.2)
#>  systemfonts                          1.0.4    2022-02-11 [2] CRAN (R 4.2.2)
#>  tensorA                              0.36.2   2020-11-19 [2] CRAN (R 4.2.1)
#>  textshaping                          0.3.6    2021-10-13 [2] CRAN (R 4.2.2)
#>  TH.data                              1.1-1    2022-04-26 [2] CRAN (R 4.2.2)
#>  threejs                              0.3.3    2020-01-21 [2] CRAN (R 4.2.0)
#>  tibble                               3.1.8    2022-07-22 [2] CRAN (R 4.2.2)
#>  tidyr                              * 1.2.1    2022-09-08 [2] CRAN (R 4.2.0)
#>  tidyselect                           1.2.0    2022-10-10 [2] CRAN (R 4.2.2)
#>  tzdb                                 0.3.0    2022-03-28 [2] CRAN (R 4.2.2)
#>  utf8                                 1.2.2    2021-07-24 [2] CRAN (R 4.2.2)
#>  vctrs                                0.5.1    2022-11-16 [2] CRAN (R 4.2.2)
#>  withr                                2.5.0    2022-03-03 [2] CRAN (R 4.2.2)
#>  xfun                                 0.36     2022-12-21 [2] CRAN (R 4.2.2)
#>  xml2                                 1.3.3    2021-11-30 [2] CRAN (R 4.2.2)
#>  xtable                               1.8-4    2019-04-21 [2] CRAN (R 4.2.2)
#>  xts                                  0.12.2   2022-10-16 [2] CRAN (R 4.2.2)
#>  yaml                                 2.3.6    2022-10-18 [2] CRAN (R 4.2.2)
#>  zoo                                  1.8-11   2022-09-17 [2] CRAN (R 4.2.2)
#> 
#>  [1] /private/var/folders/hc/tft3s5bn48gb81cs99mycyf00000gn/T/RtmpwnOTN6/temp_libpath4da5ab32fec
#>  [2] /Users/adamsparks/Library/R/arm64/4.2/library
#>  [3] /Library/Frameworks/R.framework/Versions/4.2-arm64/Resources/library
#> 
#> ──────────────────────────────────────────────────────────────────────────────