├── README.md ├── additional-reading.txt ├── day1 ├── change-detection │ ├── advanced-process-models.html │ ├── advanced-process-models.rmd │ ├── change-detection.Rmd │ ├── change-detection.html │ ├── data │ │ ├── reshape-rouder-data.R │ │ ├── rouder08-data-0.5.dat │ │ └── rouder08-data-full.dat │ ├── mle-rouder08-group.R │ ├── mle-rouder08-indiv.R │ └── pictures │ │ ├── MUlogoRGB.png │ │ ├── SP.pdf │ │ ├── SP.png │ │ └── rouder08.png ├── intro-to-R │ ├── data │ │ ├── example_fun.csv │ │ ├── example_rm.csv │ │ └── teachers.RData │ ├── intro-script.R │ ├── intro.html │ ├── intro.rmd │ └── pictures │ │ ├── Expectations-reality.png │ │ ├── MUlogoRGB.png │ │ └── Rlogo.png ├── intro-to-process-models │ ├── high-threshold.html │ ├── high-threshold.rmd │ ├── pictures │ │ ├── Expectations-reality.png │ │ ├── MUlogoRGB.png │ │ └── Rlogo.png │ ├── script-for-slides.R │ ├── signal-detection.html │ ├── signal-detection.rmd │ └── stats101.R └── maximum-likelihood │ ├── max-lik.Rmd │ └── max-lik.html ├── day2 ├── bayesian-models │ ├── bayes-cog-models.Rmd │ ├── bayes-cog-models.html │ ├── confidence-rating │ │ ├── HierSDT_model.txt │ │ ├── fit-selker-model.R │ │ └── pratte10.RData │ ├── delayed-estimation │ │ ├── jags-zhang-luck08.R │ │ ├── mle-zhang-luck08.R │ │ ├── models │ │ │ ├── mixture_k.txt │ │ │ ├── z-l-mixture.txt │ │ │ └── z-l-resource.txt │ │ └── zhang-luck08.dat │ ├── jags-change-det │ │ ├── jags-rouder08.R │ │ ├── rouder08-longdata-0.5.dat │ │ └── rouder08-longdata-full.dat │ └── pictures │ │ └── zhang-luck.png ├── change-detection │ ├── advanced-process-models.html │ ├── advanced-process-models.rmd │ ├── change-detection.Rmd │ ├── change-detection.html │ ├── data │ │ ├── reshape-rouder-data.R │ │ ├── rouder08-data-0.5.dat │ │ └── rouder08-data-full.dat │ ├── mle-rouder08-group.R │ ├── mle-rouder08-indiv.R │ └── pictures │ │ ├── MUlogoRGB.png │ │ ├── SP.pdf │ │ ├── SP.png │ │ └── rouder08.png └── intro-to-bayes │ ├── bayes-jags-intro.Rmd │ ├── bayes-jags-intro.html │ ├── metropolis-example.R │ ├── rjags-basic-hier.R │ └── rjags-basics.R ├── gettingstarted.txt ├── mcpr-description.Rmd └── mcpr-description.pdf /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/README.md -------------------------------------------------------------------------------- /additional-reading.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/additional-reading.txt -------------------------------------------------------------------------------- /day1/change-detection/advanced-process-models.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day1/change-detection/advanced-process-models.html -------------------------------------------------------------------------------- /day1/change-detection/advanced-process-models.rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day1/change-detection/advanced-process-models.rmd -------------------------------------------------------------------------------- /day1/change-detection/change-detection.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day1/change-detection/change-detection.Rmd -------------------------------------------------------------------------------- /day1/change-detection/change-detection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day1/change-detection/change-detection.html -------------------------------------------------------------------------------- /day1/change-detection/data/reshape-rouder-data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day1/change-detection/data/reshape-rouder-data.R -------------------------------------------------------------------------------- /day1/change-detection/data/rouder08-data-0.5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day1/change-detection/data/rouder08-data-0.5.dat -------------------------------------------------------------------------------- /day1/change-detection/data/rouder08-data-full.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day1/change-detection/data/rouder08-data-full.dat -------------------------------------------------------------------------------- /day1/change-detection/mle-rouder08-group.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day1/change-detection/mle-rouder08-group.R -------------------------------------------------------------------------------- /day1/change-detection/mle-rouder08-indiv.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day1/change-detection/mle-rouder08-indiv.R -------------------------------------------------------------------------------- /day1/change-detection/pictures/MUlogoRGB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day1/change-detection/pictures/MUlogoRGB.png -------------------------------------------------------------------------------- /day1/change-detection/pictures/SP.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day1/change-detection/pictures/SP.pdf -------------------------------------------------------------------------------- /day1/change-detection/pictures/SP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day1/change-detection/pictures/SP.png -------------------------------------------------------------------------------- /day1/change-detection/pictures/rouder08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day1/change-detection/pictures/rouder08.png -------------------------------------------------------------------------------- /day1/intro-to-R/data/example_fun.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day1/intro-to-R/data/example_fun.csv -------------------------------------------------------------------------------- /day1/intro-to-R/data/example_rm.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day1/intro-to-R/data/example_rm.csv -------------------------------------------------------------------------------- /day1/intro-to-R/data/teachers.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day1/intro-to-R/data/teachers.RData -------------------------------------------------------------------------------- /day1/intro-to-R/intro-script.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day1/intro-to-R/intro-script.R -------------------------------------------------------------------------------- /day1/intro-to-R/intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day1/intro-to-R/intro.html -------------------------------------------------------------------------------- /day1/intro-to-R/intro.rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day1/intro-to-R/intro.rmd -------------------------------------------------------------------------------- /day1/intro-to-R/pictures/Expectations-reality.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day1/intro-to-R/pictures/Expectations-reality.png -------------------------------------------------------------------------------- /day1/intro-to-R/pictures/MUlogoRGB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day1/intro-to-R/pictures/MUlogoRGB.png -------------------------------------------------------------------------------- /day1/intro-to-R/pictures/Rlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day1/intro-to-R/pictures/Rlogo.png -------------------------------------------------------------------------------- /day1/intro-to-process-models/high-threshold.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day1/intro-to-process-models/high-threshold.html -------------------------------------------------------------------------------- /day1/intro-to-process-models/high-threshold.rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day1/intro-to-process-models/high-threshold.rmd -------------------------------------------------------------------------------- /day1/intro-to-process-models/pictures/Expectations-reality.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day1/intro-to-process-models/pictures/Expectations-reality.png -------------------------------------------------------------------------------- /day1/intro-to-process-models/pictures/MUlogoRGB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day1/intro-to-process-models/pictures/MUlogoRGB.png -------------------------------------------------------------------------------- /day1/intro-to-process-models/pictures/Rlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day1/intro-to-process-models/pictures/Rlogo.png -------------------------------------------------------------------------------- /day1/intro-to-process-models/script-for-slides.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day1/intro-to-process-models/script-for-slides.R -------------------------------------------------------------------------------- /day1/intro-to-process-models/signal-detection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day1/intro-to-process-models/signal-detection.html -------------------------------------------------------------------------------- /day1/intro-to-process-models/signal-detection.rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day1/intro-to-process-models/signal-detection.rmd -------------------------------------------------------------------------------- /day1/intro-to-process-models/stats101.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day1/intro-to-process-models/stats101.R -------------------------------------------------------------------------------- /day1/maximum-likelihood/max-lik.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day1/maximum-likelihood/max-lik.Rmd -------------------------------------------------------------------------------- /day1/maximum-likelihood/max-lik.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day1/maximum-likelihood/max-lik.html -------------------------------------------------------------------------------- /day2/bayesian-models/bayes-cog-models.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day2/bayesian-models/bayes-cog-models.Rmd -------------------------------------------------------------------------------- /day2/bayesian-models/bayes-cog-models.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day2/bayesian-models/bayes-cog-models.html -------------------------------------------------------------------------------- /day2/bayesian-models/confidence-rating/HierSDT_model.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day2/bayesian-models/confidence-rating/HierSDT_model.txt -------------------------------------------------------------------------------- /day2/bayesian-models/confidence-rating/fit-selker-model.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day2/bayesian-models/confidence-rating/fit-selker-model.R -------------------------------------------------------------------------------- /day2/bayesian-models/confidence-rating/pratte10.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day2/bayesian-models/confidence-rating/pratte10.RData -------------------------------------------------------------------------------- /day2/bayesian-models/delayed-estimation/jags-zhang-luck08.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day2/bayesian-models/delayed-estimation/jags-zhang-luck08.R -------------------------------------------------------------------------------- /day2/bayesian-models/delayed-estimation/mle-zhang-luck08.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day2/bayesian-models/delayed-estimation/mle-zhang-luck08.R -------------------------------------------------------------------------------- /day2/bayesian-models/delayed-estimation/models/mixture_k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day2/bayesian-models/delayed-estimation/models/mixture_k.txt -------------------------------------------------------------------------------- /day2/bayesian-models/delayed-estimation/models/z-l-mixture.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day2/bayesian-models/delayed-estimation/models/z-l-mixture.txt -------------------------------------------------------------------------------- /day2/bayesian-models/delayed-estimation/models/z-l-resource.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day2/bayesian-models/delayed-estimation/models/z-l-resource.txt -------------------------------------------------------------------------------- /day2/bayesian-models/delayed-estimation/zhang-luck08.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day2/bayesian-models/delayed-estimation/zhang-luck08.dat -------------------------------------------------------------------------------- /day2/bayesian-models/jags-change-det/jags-rouder08.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day2/bayesian-models/jags-change-det/jags-rouder08.R -------------------------------------------------------------------------------- /day2/bayesian-models/jags-change-det/rouder08-longdata-0.5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day2/bayesian-models/jags-change-det/rouder08-longdata-0.5.dat -------------------------------------------------------------------------------- /day2/bayesian-models/jags-change-det/rouder08-longdata-full.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day2/bayesian-models/jags-change-det/rouder08-longdata-full.dat -------------------------------------------------------------------------------- /day2/bayesian-models/pictures/zhang-luck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day2/bayesian-models/pictures/zhang-luck.png -------------------------------------------------------------------------------- /day2/change-detection/advanced-process-models.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day2/change-detection/advanced-process-models.html -------------------------------------------------------------------------------- /day2/change-detection/advanced-process-models.rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day2/change-detection/advanced-process-models.rmd -------------------------------------------------------------------------------- /day2/change-detection/change-detection.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day2/change-detection/change-detection.Rmd -------------------------------------------------------------------------------- /day2/change-detection/change-detection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day2/change-detection/change-detection.html -------------------------------------------------------------------------------- /day2/change-detection/data/reshape-rouder-data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day2/change-detection/data/reshape-rouder-data.R -------------------------------------------------------------------------------- /day2/change-detection/data/rouder08-data-0.5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day2/change-detection/data/rouder08-data-0.5.dat -------------------------------------------------------------------------------- /day2/change-detection/data/rouder08-data-full.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day2/change-detection/data/rouder08-data-full.dat -------------------------------------------------------------------------------- /day2/change-detection/mle-rouder08-group.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day2/change-detection/mle-rouder08-group.R -------------------------------------------------------------------------------- /day2/change-detection/mle-rouder08-indiv.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day2/change-detection/mle-rouder08-indiv.R -------------------------------------------------------------------------------- /day2/change-detection/pictures/MUlogoRGB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day2/change-detection/pictures/MUlogoRGB.png -------------------------------------------------------------------------------- /day2/change-detection/pictures/SP.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day2/change-detection/pictures/SP.pdf -------------------------------------------------------------------------------- /day2/change-detection/pictures/SP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day2/change-detection/pictures/SP.png -------------------------------------------------------------------------------- /day2/change-detection/pictures/rouder08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day2/change-detection/pictures/rouder08.png -------------------------------------------------------------------------------- /day2/intro-to-bayes/bayes-jags-intro.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day2/intro-to-bayes/bayes-jags-intro.Rmd -------------------------------------------------------------------------------- /day2/intro-to-bayes/bayes-jags-intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day2/intro-to-bayes/bayes-jags-intro.html -------------------------------------------------------------------------------- /day2/intro-to-bayes/metropolis-example.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day2/intro-to-bayes/metropolis-example.R -------------------------------------------------------------------------------- /day2/intro-to-bayes/rjags-basic-hier.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day2/intro-to-bayes/rjags-basic-hier.R -------------------------------------------------------------------------------- /day2/intro-to-bayes/rjags-basics.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/day2/intro-to-bayes/rjags-basics.R -------------------------------------------------------------------------------- /gettingstarted.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/gettingstarted.txt -------------------------------------------------------------------------------- /mcpr-description.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/mcpr-description.Rmd -------------------------------------------------------------------------------- /mcpr-description.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstbcs/CognitiveModelingWorkshop/HEAD/mcpr-description.pdf --------------------------------------------------------------------------------