├── .Rprofile ├── .github └── workflows │ └── bookdown.yml ├── .gitignore ├── .nojekyll ├── 01-programming.Rmd ├── 02-timelines.Rmd ├── 03-timeline-variables.Rmd ├── 04-data.Rmd ├── 05-dynamic-parameters.Rmd ├── 06-event-callbacks.Rmd ├── 07-conditional-loop-nodes.Rmd ├── 08-using-media-files.Rmd ├── 09-randomization-sampling.Rmd ├── 10-visual-appearance.Rmd ├── 11-plugins.Rmd ├── 12-extensions.Rmd ├── 13-external-libraries.Rmd ├── README.md ├── _bookdown.yml ├── demos └── XX-survey │ └── index.html ├── index.Rmd ├── renv.lock ├── renv ├── .gitignore ├── activate.R └── settings.dcf └── webbook.Rproj /.Rprofile: -------------------------------------------------------------------------------- 1 | source("renv/activate.R") 2 | -------------------------------------------------------------------------------- /.github/workflows/bookdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jspsych/webbook/HEAD/.github/workflows/bookdown.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jspsych/webbook/HEAD/.gitignore -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /01-programming.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jspsych/webbook/HEAD/01-programming.Rmd -------------------------------------------------------------------------------- /02-timelines.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jspsych/webbook/HEAD/02-timelines.Rmd -------------------------------------------------------------------------------- /03-timeline-variables.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jspsych/webbook/HEAD/03-timeline-variables.Rmd -------------------------------------------------------------------------------- /04-data.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jspsych/webbook/HEAD/04-data.Rmd -------------------------------------------------------------------------------- /05-dynamic-parameters.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jspsych/webbook/HEAD/05-dynamic-parameters.Rmd -------------------------------------------------------------------------------- /06-event-callbacks.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jspsych/webbook/HEAD/06-event-callbacks.Rmd -------------------------------------------------------------------------------- /07-conditional-loop-nodes.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jspsych/webbook/HEAD/07-conditional-loop-nodes.Rmd -------------------------------------------------------------------------------- /08-using-media-files.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jspsych/webbook/HEAD/08-using-media-files.Rmd -------------------------------------------------------------------------------- /09-randomization-sampling.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jspsych/webbook/HEAD/09-randomization-sampling.Rmd -------------------------------------------------------------------------------- /10-visual-appearance.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jspsych/webbook/HEAD/10-visual-appearance.Rmd -------------------------------------------------------------------------------- /11-plugins.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jspsych/webbook/HEAD/11-plugins.Rmd -------------------------------------------------------------------------------- /12-extensions.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jspsych/webbook/HEAD/12-extensions.Rmd -------------------------------------------------------------------------------- /13-external-libraries.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jspsych/webbook/HEAD/13-external-libraries.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jspsych/webbook/HEAD/README.md -------------------------------------------------------------------------------- /_bookdown.yml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /demos/XX-survey/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jspsych/webbook/HEAD/demos/XX-survey/index.html -------------------------------------------------------------------------------- /index.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jspsych/webbook/HEAD/index.Rmd -------------------------------------------------------------------------------- /renv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jspsych/webbook/HEAD/renv.lock -------------------------------------------------------------------------------- /renv/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jspsych/webbook/HEAD/renv/.gitignore -------------------------------------------------------------------------------- /renv/activate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jspsych/webbook/HEAD/renv/activate.R -------------------------------------------------------------------------------- /renv/settings.dcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jspsych/webbook/HEAD/renv/settings.dcf -------------------------------------------------------------------------------- /webbook.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jspsych/webbook/HEAD/webbook.Rproj --------------------------------------------------------------------------------