Study 2.1: Semantic priming
Prior predictive checks
Figures 39, 40 and 41 show the prior predictive checks for the Gaussian models. These plots show the maximum, mean and minimum values of the observed data (y) and those of the predicted distribution (\(y_{rep}\), which stands for replications of the outcome). The way of interpreting these plots is by comparing the observed data to the predicted distribution. The specifics of this comparison vary across the three plots. First, in the upper plot, which shows the maximum values, the ideal scenario would show the observed maximum value (\(y\)) overlapping with the maximum value of the predicted distribution (\(y_{rep}\)). Second, in the middle plot, showing the mean values, the ideal scenario would show the observed mean value (\(y\)) overlapping with the mean value of the predicted distribution (\(y_{rep}\)). Last, in the lower plot, which shows the minimum values, the ideal scenario would have the observed minimum value (\(y\)) overlapping with the minimum value of the predicted distribution (\(y_{rep}\)). While the overlap need not be absolute, the closer the observed and the predicted values are on the X axis, the better. As such, the three predictive checks below—corresponding to models that used the default Gaussian distribution—show that the priors fitted the data acceptably but not very well.
Code
include_graphics(
paste0(
getwd(), # Circumvent illegal characters in file path
'/semanticpriming/bayesian_analysis/prior_predictive_checks/plots/semanticpriming_priorpredictivecheck_informativepriors.pdf'
))
Code
include_graphics(
paste0(
getwd(), # Circumvent illegal characters in file path
'/semanticpriming/bayesian_analysis/prior_predictive_checks/plots/semanticpriming_priorpredictivecheck_weaklyinformativepriors.pdf'
))
Code
include_graphics(
paste0(
getwd(), # Circumvent illegal characters in file path
'/semanticpriming/bayesian_analysis/prior_predictive_checks/plots/semanticpriming_priorpredictivecheck_diffusepriors.pdf'
))
In contrast to the above results, Figures 42, 43 and 44 demonstrate that, when an ex-Gaussian distribution was used, the priors fitted the data far better, which converged with the results of a similar comparison performed by Rodríguez-Ferreiro et al. (2020) (see supplementary materials of the latter study).
Code
include_graphics(
paste0(
getwd(), # Circumvent illegal characters in file path
'/semanticpriming/bayesian_analysis/prior_predictive_checks/plots/semanticpriming_priorpredictivecheck_informativepriors_exgaussian.pdf'
))
Code
include_graphics(
paste0(
getwd(), # Circumvent illegal characters in file path
'/semanticpriming/bayesian_analysis/prior_predictive_checks/plots/semanticpriming_priorpredictivecheck_weaklyinformativepriors_exgaussian.pdf'
))
Code
include_graphics(
paste0(
getwd(), # Circumvent illegal characters in file path
'/semanticpriming/bayesian_analysis/prior_predictive_checks/plots/semanticpriming_priorpredictivecheck_diffusepriors_exgaussian.pdf'
))
Posterior predictive checks
Based on the above results, the ex-Gaussian distribution was used in the final models. Figure 45 presents the posterior predictive checks for the latter models. The interpretation of these plots is simple: the distributions of the observed (y) and the predicted data (\(y_{rep}\)) should be as similar as possible. As such, the plots below suggest that the results are trustworthy.
Code
include_graphics(
paste0(
getwd(), # Circumvent illegal characters in file path
'/semanticpriming/bayesian_analysis/posterior_predictive_checks/plots/semanticpriming_posteriorpredictivechecks_allpriors_exgaussian.pdf'
))
References
Thesis: https://doi.org/10.17635/lancaster/thesis/1795.
Online book created using the R package bookdown.