├── .Rprofile ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── data ├── ACCH.txt ├── eeg.rda ├── egg_cq.csv ├── gestures.rda ├── mald_1_1.rda ├── pdq_20.rds ├── shallow.csv └── vowels.csv ├── gamm-workshop.Rproj ├── hands-on ├── hands-on_1.Rmd ├── hands-on_2.Rmd ├── hands-on_3.Rmd └── hands-on_4.Rmd ├── img └── time-travel.jpg ├── renv.lock ├── renv ├── .gitignore ├── activate.R └── settings.dcf └── slides ├── custom.css ├── index.Rmd ├── index.html ├── index_cache └── html │ ├── __packages │ ├── acc-gam-2_a8b788e43405ff463acbbeb8895b6c63.RData │ ├── acc-gam-2_a8b788e43405ff463acbbeb8895b6c63.rdb │ ├── acc-gam-2_a8b788e43405ff463acbbeb8895b6c63.rdx │ ├── pdq-gam-2-check_93f2e1e011c3cd7f5c649ef13eb40f31.RData │ ├── pdq-gam-2-check_93f2e1e011c3cd7f5c649ef13eb40f31.rdb │ ├── pdq-gam-2-check_93f2e1e011c3cd7f5c649ef13eb40f31.rdx │ ├── pdq-gam-2_f15c830e12d723949febb312591d65d0.RData │ ├── pdq-gam-2_f15c830e12d723949febb312591d65d0.rdb │ ├── pdq-gam-2_f15c830e12d723949febb312591d65d0.rdx │ ├── pdq-gam-3-check_f512956ff580cd311d5cbb138a1970a5.RData │ ├── pdq-gam-3-check_f512956ff580cd311d5cbb138a1970a5.rdb │ ├── pdq-gam-3-check_f512956ff580cd311d5cbb138a1970a5.rdx │ ├── pdq-gam-3_69dddc7cb2a5fd64836e455ac33432eb.RData │ ├── pdq-gam-3_69dddc7cb2a5fd64836e455ac33432eb.rdb │ ├── pdq-gam-3_69dddc7cb2a5fd64836e455ac33432eb.rdx │ ├── rt-gam-2_68fccba7a23454d9e0c3faf15476d0f3.RData │ ├── rt-gam-2_68fccba7a23454d9e0c3faf15476d0f3.rdb │ ├── rt-gam-2_68fccba7a23454d9e0c3faf15476d0f3.rdx │ ├── sha-gam_5505eba253d2ba40e4d7d9df56f311f6.RData │ ├── sha-gam_5505eba253d2ba40e4d7d9df56f311f6.rdb │ └── sha-gam_5505eba253d2ba40e4d7d9df56f311f6.rdx ├── index_files ├── figure-html │ ├── 10-poly-1.png │ ├── 10-poly-2-1.png │ ├── 10-poly-21-1.png │ ├── 2-poly-1.png │ ├── 3-poly-1.png │ ├── acc-gam-2-plot-1.png │ ├── basis-1.png │ ├── error-1.png │ ├── error-2-1.png │ ├── f0-gam-plot-1.png │ ├── f0-gam-plot-2-1.png │ ├── f0-gam-plot-3-1.png │ ├── homework-1.png │ ├── line-1.png │ ├── lm-plot-1.png │ ├── nl-plot-1.png │ ├── nl-smooth-1.png │ ├── pdq-gam-2-check-1.png │ ├── pdq-gam-2-plot-1.png │ ├── pdq-gam-3-check-1.png │ ├── pdq-gam-3-plot-1.png │ ├── plot-data-1.png │ ├── plot-lm-1.png │ ├── plot-smooth-1.png │ ├── rt-gam-2-diff-2-1.png │ ├── rt-gam-2-plot-1.png │ ├── rt-gam-diff-1.png │ ├── rt-gam-diff-2-1.png │ ├── rt-gam-diff-3-1.png │ ├── rt-gam-plot-1.png │ ├── rt-gam-plot-2-1.png │ ├── sampled-1.png │ ├── sha-gam-plot-1.png │ ├── shallow-plot-1.png │ ├── simple-10-plot-1.png │ └── simple-5-1.png ├── freezeframe │ └── freezeframe.min.js ├── header-attrs │ └── header-attrs.js ├── panelset │ ├── panelset.css │ └── panelset.js ├── tachyons │ └── tachyons.min.css └── xaringanExtra-freezeframe │ └── freezeframe-init.js ├── macros.js └── xaringan-themer.css /.Rprofile: -------------------------------------------------------------------------------- 1 | source("renv/activate.R") 2 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/README.md -------------------------------------------------------------------------------- /data/ACCH.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/data/ACCH.txt -------------------------------------------------------------------------------- /data/eeg.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/data/eeg.rda -------------------------------------------------------------------------------- /data/egg_cq.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/data/egg_cq.csv -------------------------------------------------------------------------------- /data/gestures.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/data/gestures.rda -------------------------------------------------------------------------------- /data/mald_1_1.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/data/mald_1_1.rda -------------------------------------------------------------------------------- /data/pdq_20.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/data/pdq_20.rds -------------------------------------------------------------------------------- /data/shallow.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/data/shallow.csv -------------------------------------------------------------------------------- /data/vowels.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/data/vowels.csv -------------------------------------------------------------------------------- /gamm-workshop.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/gamm-workshop.Rproj -------------------------------------------------------------------------------- /hands-on/hands-on_1.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/hands-on/hands-on_1.Rmd -------------------------------------------------------------------------------- /hands-on/hands-on_2.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/hands-on/hands-on_2.Rmd -------------------------------------------------------------------------------- /hands-on/hands-on_3.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/hands-on/hands-on_3.Rmd -------------------------------------------------------------------------------- /hands-on/hands-on_4.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/hands-on/hands-on_4.Rmd -------------------------------------------------------------------------------- /img/time-travel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/img/time-travel.jpg -------------------------------------------------------------------------------- /renv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/renv.lock -------------------------------------------------------------------------------- /renv/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/renv/.gitignore -------------------------------------------------------------------------------- /renv/activate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/renv/activate.R -------------------------------------------------------------------------------- /renv/settings.dcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/renv/settings.dcf -------------------------------------------------------------------------------- /slides/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/custom.css -------------------------------------------------------------------------------- /slides/index.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index.Rmd -------------------------------------------------------------------------------- /slides/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index.html -------------------------------------------------------------------------------- /slides/index_cache/html/__packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_cache/html/__packages -------------------------------------------------------------------------------- /slides/index_cache/html/acc-gam-2_a8b788e43405ff463acbbeb8895b6c63.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_cache/html/acc-gam-2_a8b788e43405ff463acbbeb8895b6c63.RData -------------------------------------------------------------------------------- /slides/index_cache/html/acc-gam-2_a8b788e43405ff463acbbeb8895b6c63.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_cache/html/acc-gam-2_a8b788e43405ff463acbbeb8895b6c63.rdb -------------------------------------------------------------------------------- /slides/index_cache/html/acc-gam-2_a8b788e43405ff463acbbeb8895b6c63.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_cache/html/acc-gam-2_a8b788e43405ff463acbbeb8895b6c63.rdx -------------------------------------------------------------------------------- /slides/index_cache/html/pdq-gam-2-check_93f2e1e011c3cd7f5c649ef13eb40f31.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_cache/html/pdq-gam-2-check_93f2e1e011c3cd7f5c649ef13eb40f31.RData -------------------------------------------------------------------------------- /slides/index_cache/html/pdq-gam-2-check_93f2e1e011c3cd7f5c649ef13eb40f31.rdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slides/index_cache/html/pdq-gam-2-check_93f2e1e011c3cd7f5c649ef13eb40f31.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_cache/html/pdq-gam-2-check_93f2e1e011c3cd7f5c649ef13eb40f31.rdx -------------------------------------------------------------------------------- /slides/index_cache/html/pdq-gam-2_f15c830e12d723949febb312591d65d0.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_cache/html/pdq-gam-2_f15c830e12d723949febb312591d65d0.RData -------------------------------------------------------------------------------- /slides/index_cache/html/pdq-gam-2_f15c830e12d723949febb312591d65d0.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_cache/html/pdq-gam-2_f15c830e12d723949febb312591d65d0.rdb -------------------------------------------------------------------------------- /slides/index_cache/html/pdq-gam-2_f15c830e12d723949febb312591d65d0.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_cache/html/pdq-gam-2_f15c830e12d723949febb312591d65d0.rdx -------------------------------------------------------------------------------- /slides/index_cache/html/pdq-gam-3-check_f512956ff580cd311d5cbb138a1970a5.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_cache/html/pdq-gam-3-check_f512956ff580cd311d5cbb138a1970a5.RData -------------------------------------------------------------------------------- /slides/index_cache/html/pdq-gam-3-check_f512956ff580cd311d5cbb138a1970a5.rdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slides/index_cache/html/pdq-gam-3-check_f512956ff580cd311d5cbb138a1970a5.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_cache/html/pdq-gam-3-check_f512956ff580cd311d5cbb138a1970a5.rdx -------------------------------------------------------------------------------- /slides/index_cache/html/pdq-gam-3_69dddc7cb2a5fd64836e455ac33432eb.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_cache/html/pdq-gam-3_69dddc7cb2a5fd64836e455ac33432eb.RData -------------------------------------------------------------------------------- /slides/index_cache/html/pdq-gam-3_69dddc7cb2a5fd64836e455ac33432eb.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_cache/html/pdq-gam-3_69dddc7cb2a5fd64836e455ac33432eb.rdb -------------------------------------------------------------------------------- /slides/index_cache/html/pdq-gam-3_69dddc7cb2a5fd64836e455ac33432eb.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_cache/html/pdq-gam-3_69dddc7cb2a5fd64836e455ac33432eb.rdx -------------------------------------------------------------------------------- /slides/index_cache/html/rt-gam-2_68fccba7a23454d9e0c3faf15476d0f3.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_cache/html/rt-gam-2_68fccba7a23454d9e0c3faf15476d0f3.RData -------------------------------------------------------------------------------- /slides/index_cache/html/rt-gam-2_68fccba7a23454d9e0c3faf15476d0f3.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_cache/html/rt-gam-2_68fccba7a23454d9e0c3faf15476d0f3.rdb -------------------------------------------------------------------------------- /slides/index_cache/html/rt-gam-2_68fccba7a23454d9e0c3faf15476d0f3.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_cache/html/rt-gam-2_68fccba7a23454d9e0c3faf15476d0f3.rdx -------------------------------------------------------------------------------- /slides/index_cache/html/sha-gam_5505eba253d2ba40e4d7d9df56f311f6.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_cache/html/sha-gam_5505eba253d2ba40e4d7d9df56f311f6.RData -------------------------------------------------------------------------------- /slides/index_cache/html/sha-gam_5505eba253d2ba40e4d7d9df56f311f6.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_cache/html/sha-gam_5505eba253d2ba40e4d7d9df56f311f6.rdb -------------------------------------------------------------------------------- /slides/index_cache/html/sha-gam_5505eba253d2ba40e4d7d9df56f311f6.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_cache/html/sha-gam_5505eba253d2ba40e4d7d9df56f311f6.rdx -------------------------------------------------------------------------------- /slides/index_files/figure-html/10-poly-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_files/figure-html/10-poly-1.png -------------------------------------------------------------------------------- /slides/index_files/figure-html/10-poly-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_files/figure-html/10-poly-2-1.png -------------------------------------------------------------------------------- /slides/index_files/figure-html/10-poly-21-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_files/figure-html/10-poly-21-1.png -------------------------------------------------------------------------------- /slides/index_files/figure-html/2-poly-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_files/figure-html/2-poly-1.png -------------------------------------------------------------------------------- /slides/index_files/figure-html/3-poly-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_files/figure-html/3-poly-1.png -------------------------------------------------------------------------------- /slides/index_files/figure-html/acc-gam-2-plot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_files/figure-html/acc-gam-2-plot-1.png -------------------------------------------------------------------------------- /slides/index_files/figure-html/basis-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_files/figure-html/basis-1.png -------------------------------------------------------------------------------- /slides/index_files/figure-html/error-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_files/figure-html/error-1.png -------------------------------------------------------------------------------- /slides/index_files/figure-html/error-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_files/figure-html/error-2-1.png -------------------------------------------------------------------------------- /slides/index_files/figure-html/f0-gam-plot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_files/figure-html/f0-gam-plot-1.png -------------------------------------------------------------------------------- /slides/index_files/figure-html/f0-gam-plot-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_files/figure-html/f0-gam-plot-2-1.png -------------------------------------------------------------------------------- /slides/index_files/figure-html/f0-gam-plot-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_files/figure-html/f0-gam-plot-3-1.png -------------------------------------------------------------------------------- /slides/index_files/figure-html/homework-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_files/figure-html/homework-1.png -------------------------------------------------------------------------------- /slides/index_files/figure-html/line-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_files/figure-html/line-1.png -------------------------------------------------------------------------------- /slides/index_files/figure-html/lm-plot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_files/figure-html/lm-plot-1.png -------------------------------------------------------------------------------- /slides/index_files/figure-html/nl-plot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_files/figure-html/nl-plot-1.png -------------------------------------------------------------------------------- /slides/index_files/figure-html/nl-smooth-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_files/figure-html/nl-smooth-1.png -------------------------------------------------------------------------------- /slides/index_files/figure-html/pdq-gam-2-check-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_files/figure-html/pdq-gam-2-check-1.png -------------------------------------------------------------------------------- /slides/index_files/figure-html/pdq-gam-2-plot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_files/figure-html/pdq-gam-2-plot-1.png -------------------------------------------------------------------------------- /slides/index_files/figure-html/pdq-gam-3-check-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_files/figure-html/pdq-gam-3-check-1.png -------------------------------------------------------------------------------- /slides/index_files/figure-html/pdq-gam-3-plot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_files/figure-html/pdq-gam-3-plot-1.png -------------------------------------------------------------------------------- /slides/index_files/figure-html/plot-data-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_files/figure-html/plot-data-1.png -------------------------------------------------------------------------------- /slides/index_files/figure-html/plot-lm-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_files/figure-html/plot-lm-1.png -------------------------------------------------------------------------------- /slides/index_files/figure-html/plot-smooth-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_files/figure-html/plot-smooth-1.png -------------------------------------------------------------------------------- /slides/index_files/figure-html/rt-gam-2-diff-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_files/figure-html/rt-gam-2-diff-2-1.png -------------------------------------------------------------------------------- /slides/index_files/figure-html/rt-gam-2-plot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_files/figure-html/rt-gam-2-plot-1.png -------------------------------------------------------------------------------- /slides/index_files/figure-html/rt-gam-diff-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_files/figure-html/rt-gam-diff-1.png -------------------------------------------------------------------------------- /slides/index_files/figure-html/rt-gam-diff-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_files/figure-html/rt-gam-diff-2-1.png -------------------------------------------------------------------------------- /slides/index_files/figure-html/rt-gam-diff-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_files/figure-html/rt-gam-diff-3-1.png -------------------------------------------------------------------------------- /slides/index_files/figure-html/rt-gam-plot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_files/figure-html/rt-gam-plot-1.png -------------------------------------------------------------------------------- /slides/index_files/figure-html/rt-gam-plot-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_files/figure-html/rt-gam-plot-2-1.png -------------------------------------------------------------------------------- /slides/index_files/figure-html/sampled-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_files/figure-html/sampled-1.png -------------------------------------------------------------------------------- /slides/index_files/figure-html/sha-gam-plot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_files/figure-html/sha-gam-plot-1.png -------------------------------------------------------------------------------- /slides/index_files/figure-html/shallow-plot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_files/figure-html/shallow-plot-1.png -------------------------------------------------------------------------------- /slides/index_files/figure-html/simple-10-plot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_files/figure-html/simple-10-plot-1.png -------------------------------------------------------------------------------- /slides/index_files/figure-html/simple-5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_files/figure-html/simple-5-1.png -------------------------------------------------------------------------------- /slides/index_files/freezeframe/freezeframe.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_files/freezeframe/freezeframe.min.js -------------------------------------------------------------------------------- /slides/index_files/header-attrs/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_files/header-attrs/header-attrs.js -------------------------------------------------------------------------------- /slides/index_files/panelset/panelset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_files/panelset/panelset.css -------------------------------------------------------------------------------- /slides/index_files/panelset/panelset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_files/panelset/panelset.js -------------------------------------------------------------------------------- /slides/index_files/tachyons/tachyons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_files/tachyons/tachyons.min.css -------------------------------------------------------------------------------- /slides/index_files/xaringanExtra-freezeframe/freezeframe-init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/index_files/xaringanExtra-freezeframe/freezeframe-init.js -------------------------------------------------------------------------------- /slides/macros.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/macros.js -------------------------------------------------------------------------------- /slides/xaringan-themer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanocoretta/gamm-workshop/HEAD/slides/xaringan-themer.css --------------------------------------------------------------------------------