├── .gitignore ├── 00_R_cheatsheet ├── Franconeri_ExperCeptionDotNet_ChartChooser.pdf ├── RegExCheatsheet.pdf ├── advancedR.pdf ├── base-r.pdf ├── data-import.pdf ├── data-visualization-2.1.pdf ├── how-big-is-your-graph.pdf ├── latexsheet-a4.pdf ├── mlr.pdf └── rstudio-ide.pdf ├── 01.R_basics ├── .Rhistory ├── .Rprofile ├── .Rproj.user │ ├── 85BFDB88 │ │ ├── pcs │ │ │ ├── files-pane.pper │ │ │ ├── source-pane.pper │ │ │ ├── windowlayoutstate.pper │ │ │ └── workbench-pane.pper │ │ ├── saved_source_markers │ │ └── sdb │ │ │ └── prop │ │ │ ├── 21D7C101 │ │ │ ├── 379D85D8 │ │ │ ├── 744B70AB │ │ │ ├── 74B9F72 │ │ │ ├── 831FC73F │ │ │ ├── 8484127A │ │ │ ├── A1366766 │ │ │ ├── CEA4D9CF │ │ │ ├── FE6E3F80 │ │ │ └── INDEX │ ├── E5E84BA0 │ │ ├── console06 │ │ │ ├── A9888C92 │ │ │ └── INDEX001 │ │ ├── pcs │ │ │ ├── debug-breakpoints.pper │ │ │ ├── files-pane.pper │ │ │ ├── source-pane.pper │ │ │ ├── windowlayoutstate.pper │ │ │ └── workbench-pane.pper │ │ ├── persistent-state │ │ ├── rmd-outputs │ │ ├── saved_source_markers │ │ ├── sdb │ │ │ └── prop │ │ │ │ ├── 164B4445 │ │ │ │ ├── 3109F3D7 │ │ │ │ ├── A2540DB0 │ │ │ │ ├── D1C4F31A │ │ │ │ └── INDEX │ │ └── sources │ │ │ └── prop │ │ │ ├── 15EA65EF │ │ │ ├── 164B4445 │ │ │ ├── 21F08C5D │ │ │ ├── 3109F3D7 │ │ │ ├── 36EB25E6 │ │ │ ├── 458BD16E │ │ │ ├── 459B1A29 │ │ │ ├── 4DCA36C4 │ │ │ ├── 549FE1B7 │ │ │ ├── 92F98250 │ │ │ ├── 99DDE91 │ │ │ ├── 9ADEF994 │ │ │ ├── A2540DB0 │ │ │ ├── D1C4F31A │ │ │ ├── D2E06020 │ │ │ ├── DC91C96F │ │ │ └── INDEX │ └── shared │ │ └── notebooks │ │ ├── patch-chunk-names │ │ └── paths ├── R_basics.Rproj ├── _data │ ├── RL_descriptive.RData │ ├── RL_raw_data │ │ ├── sub01 │ │ │ └── raw_data_sub01.txt │ │ ├── sub02 │ │ │ └── raw_data_sub02.txt │ │ ├── sub03 │ │ │ └── raw_data_sub03.txt │ │ ├── sub04 │ │ │ └── raw_data_sub04.txt │ │ ├── sub05 │ │ │ └── raw_data_sub05.txt │ │ ├── sub06 │ │ │ └── raw_data_sub06.txt │ │ ├── sub07 │ │ │ └── raw_data_sub07.txt │ │ ├── sub08 │ │ │ └── raw_data_sub08.txt │ │ ├── sub09 │ │ │ └── raw_data_sub09.txt │ │ └── sub10 │ │ │ └── raw_data_sub10.txt │ └── rawdata.RData └── _scripts │ ├── .Rhistory │ ├── R_basics.R │ └── R_basics_master.R ├── 02.binomial_globe ├── .Rhistory ├── .Rproj.user │ ├── 85BFDB88 │ │ ├── pcs │ │ │ ├── files-pane.pper │ │ │ ├── source-pane.pper │ │ │ ├── windowlayoutstate.pper │ │ │ └── workbench-pane.pper │ │ ├── saved_source_markers │ │ └── sdb │ │ │ ├── prop │ │ │ ├── 219A6A76 │ │ │ ├── 27264CE7 │ │ │ ├── 98B63ED │ │ │ ├── A822BC41 │ │ │ └── INDEX │ │ │ └── s-661FFC26 │ │ │ ├── 4EB5859C │ │ │ ├── 62C350D7 │ │ │ └── lock_file │ ├── E5E84BA0 │ │ ├── console06 │ │ │ └── INDEX001 │ │ ├── pcs │ │ │ ├── files-pane.pper │ │ │ ├── source-pane.pper │ │ │ ├── windowlayoutstate.pper │ │ │ └── workbench-pane.pper │ │ ├── rmd-outputs │ │ ├── saved_source_markers │ │ ├── sdb │ │ │ └── prop │ │ │ │ ├── 1BF77948 │ │ │ │ ├── 23AE707B │ │ │ │ ├── A622EFF1 │ │ │ │ ├── C5855A84 │ │ │ │ ├── C7ED2399 │ │ │ │ └── INDEX │ │ └── sources │ │ │ └── prop │ │ │ ├── 1BF77948 │ │ │ ├── 2294035D │ │ │ ├── 23AE707B │ │ │ ├── 41B773C0 │ │ │ ├── 7B1C07DD │ │ │ ├── 834EF88D │ │ │ ├── 8934991D │ │ │ ├── 9CF38498 │ │ │ ├── A622EFF1 │ │ │ ├── A673D520 │ │ │ ├── C5855A84 │ │ │ ├── C7ED2399 │ │ │ ├── DEB47860 │ │ │ ├── E133D227 │ │ │ ├── E68E2A0C │ │ │ ├── EF199C8 │ │ │ ├── F2B70645 │ │ │ ├── F80FEFB8 │ │ │ ├── FF1166D8 │ │ │ └── INDEX │ └── shared │ │ └── notebooks │ │ ├── patch-chunk-names │ │ └── paths ├── _plots │ ├── binomial_grid.png │ ├── dens_cmb.png │ ├── dens_sep.png │ ├── trace_excl_warmup.png │ └── trace_incl_warmup.png ├── _scripts │ ├── binomial_globe_grid.R │ ├── binomial_globe_grid_master.R │ ├── binomial_globe_main.R │ ├── binomial_globe_main_master.R │ ├── binomial_globe_model.stan │ ├── binomial_globe_model_v2.stan │ ├── binomial_globe_model_v3.stan │ ├── my_first_stan_data_story.rds │ └── my_first_stan_data_story.stan └── binomial_globe.Rproj ├── 03.bernoulli_coin ├── .Rhistory ├── .Rproj.user │ ├── 85BFDB88 │ │ ├── pcs │ │ │ ├── files-pane.pper │ │ │ ├── source-pane.pper │ │ │ ├── windowlayoutstate.pper │ │ │ └── workbench-pane.pper │ │ ├── saved_source_markers │ │ └── sdb │ │ │ └── prop │ │ │ ├── 28725252 │ │ │ ├── 2325E13F │ │ │ ├── 5AA3255A │ │ │ ├── F20307BC │ │ │ └── INDEX │ ├── E5E84BA0 │ │ ├── console06 │ │ │ └── INDEX001 │ │ ├── pcs │ │ │ ├── files-pane.pper │ │ │ ├── source-pane.pper │ │ │ ├── windowlayoutstate.pper │ │ │ └── workbench-pane.pper │ │ ├── rmd-outputs │ │ ├── saved_source_markers │ │ ├── sdb │ │ │ └── prop │ │ │ │ ├── 3C295BD3 │ │ │ │ ├── 94C3E1FD │ │ │ │ ├── AC2F9FA8 │ │ │ │ ├── C737DA53 │ │ │ │ └── INDEX │ │ └── sources │ │ │ └── prop │ │ │ ├── 10478B07 │ │ │ ├── 12D21793 │ │ │ ├── 2758855D │ │ │ ├── 3C295BD3 │ │ │ ├── 94C3E1FD │ │ │ ├── AC2F9FA8 │ │ │ ├── B6701B94 │ │ │ ├── C737DA53 │ │ │ ├── CB97DBA9 │ │ │ └── INDEX │ └── shared │ │ └── notebooks │ │ ├── patch-chunk-names │ │ └── paths ├── _data │ └── flip.RData ├── _plots │ └── dens.png ├── _scripts │ ├── bernoulli_coin_main.R │ ├── bernoulli_coin_main_master.R │ ├── bernoulli_coin_model1.stan │ ├── bernoulli_coin_model2.stan │ └── demo.stan ├── bernoulli_coin.Rproj ├── coin.stan └── main.R ├── 04.regression_height ├── .Rhistory ├── .Rproj.user │ ├── 85BFDB88 │ │ ├── pcs │ │ │ ├── files-pane.pper │ │ │ ├── source-pane.pper │ │ │ ├── windowlayoutstate.pper │ │ │ └── workbench-pane.pper │ │ ├── saved_source_markers │ │ └── sdb │ │ │ └── prop │ │ │ ├── 199312FC │ │ │ ├── 1B2E1EB7 │ │ │ ├── 244E44D5 │ │ │ ├── 6AD13BC3 │ │ │ ├── AB763310 │ │ │ ├── C37181EF │ │ │ ├── CA203852 │ │ │ └── INDEX │ ├── E5E84BA0 │ │ ├── console06 │ │ │ └── INDEX001 │ │ ├── pcs │ │ │ ├── files-pane.pper │ │ │ ├── source-pane.pper │ │ │ ├── windowlayoutstate.pper │ │ │ └── workbench-pane.pper │ │ ├── rmd-outputs │ │ ├── saved_source_markers │ │ ├── sdb │ │ │ └── prop │ │ │ │ ├── 5CE3B1F1 │ │ │ │ ├── 5D2D999F │ │ │ │ ├── 9800ABA2 │ │ │ │ ├── 999F7736 │ │ │ │ ├── A29A5609 │ │ │ │ ├── AA7980F8 │ │ │ │ ├── DDED2C52 │ │ │ │ └── INDEX │ │ └── sources │ │ │ └── prop │ │ │ ├── 27CE6386 │ │ │ ├── 5B72559A │ │ │ ├── 5CE3B1F1 │ │ │ ├── 5D2D999F │ │ │ ├── 5EBB36B9 │ │ │ ├── 63C6CFE7 │ │ │ ├── 6DDDAE0F │ │ │ ├── 77D8B38 │ │ │ ├── 9389D645 │ │ │ ├── 9800ABA2 │ │ │ ├── 999F7736 │ │ │ ├── 9D9F589F │ │ │ ├── A29A5609 │ │ │ ├── AA7980F8 │ │ │ ├── CFE40B6A │ │ │ ├── D1C6631D │ │ │ ├── DDED2C52 │ │ │ ├── E2CE4190 │ │ │ ├── F6046F43 │ │ │ ├── F7AB0937 │ │ │ ├── FE70C210 │ │ │ └── INDEX │ └── shared │ │ └── notebooks │ │ ├── patch-chunk-names │ │ └── paths ├── _data │ └── height.RData ├── _plots │ ├── dens_height_bar1.png │ ├── dens_height_bar1_cmb.png │ ├── halfCauchy.png │ ├── layer0.png │ ├── layer1.png │ ├── layer2.png │ ├── layer3.png │ ├── regressionline_lm.png │ ├── regressionline_lm_prediction.png │ └── regressionlinge_lm_ppc.png ├── _scripts │ ├── HDIofMCMC.R │ ├── ggplot_layer.R │ ├── plot_halfCauchy.R │ ├── regression_height_main.R │ ├── regression_height_main_master.R │ ├── regression_height_model.stan │ ├── regression_height_ppc_main.R │ ├── regression_height_ppc_main_master.R │ └── regression_height_ppc_model.stan └── regression_height.Rproj ├── 05.regression_height_poly ├── .Rhistory ├── .Rproj.user │ ├── 85BFDB88 │ │ ├── pcs │ │ │ ├── files-pane.pper │ │ │ ├── source-pane.pper │ │ │ ├── windowlayoutstate.pper │ │ │ └── workbench-pane.pper │ │ ├── saved_source_markers │ │ └── sdb │ │ │ └── prop │ │ │ ├── 6D964266 │ │ │ ├── D65B9677 │ │ │ ├── E3FCAF92 │ │ │ └── INDEX │ ├── E5E84BA0 │ │ ├── console06 │ │ │ └── INDEX001 │ │ ├── pcs │ │ │ ├── files-pane.pper │ │ │ ├── source-pane.pper │ │ │ ├── windowlayoutstate.pper │ │ │ └── workbench-pane.pper │ │ ├── rmd-outputs │ │ ├── saved_source_markers │ │ ├── sdb │ │ │ ├── per │ │ │ │ └── t │ │ │ │ │ └── 55C1B7F9 │ │ │ └── prop │ │ │ │ ├── 1A41AE13 │ │ │ │ ├── 26DC27C7 │ │ │ │ ├── 51C73043 │ │ │ │ ├── 7525F634 │ │ │ │ ├── 7D85B486 │ │ │ │ ├── 7EAC0447 │ │ │ │ ├── B58C3777 │ │ │ │ └── INDEX │ │ └── sources │ │ │ └── prop │ │ │ ├── 1A41AE13 │ │ │ ├── 1C261518 │ │ │ ├── 26DC27C7 │ │ │ ├── 4A498D6D │ │ │ ├── 51C73043 │ │ │ ├── 7525F634 │ │ │ ├── 75F4ADB7 │ │ │ ├── 7D85B486 │ │ │ ├── 7EAC0447 │ │ │ ├── 9643FB3A │ │ │ ├── B58C3777 │ │ │ └── INDEX │ └── shared │ │ └── notebooks │ │ ├── patch-chunk-names │ │ └── paths ├── _data │ └── height.RData ├── _plots │ ├── regressionline_lm_poly1.png │ ├── regressionline_lm_poly2.png │ └── scatter.png ├── _scripts │ ├── HDIofMCMC.R │ ├── regression_height_poly1_model.stan │ ├── regression_height_poly2_model.stan │ ├── regression_height_poly_main.R │ └── regression_height_poly_main_master.R └── regression_height_poly.Rproj ├── BayesCog_UKE_P1_LZ.pdf ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/.gitignore -------------------------------------------------------------------------------- /00_R_cheatsheet/Franconeri_ExperCeptionDotNet_ChartChooser.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/00_R_cheatsheet/Franconeri_ExperCeptionDotNet_ChartChooser.pdf -------------------------------------------------------------------------------- /00_R_cheatsheet/RegExCheatsheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/00_R_cheatsheet/RegExCheatsheet.pdf -------------------------------------------------------------------------------- /00_R_cheatsheet/advancedR.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/00_R_cheatsheet/advancedR.pdf -------------------------------------------------------------------------------- /00_R_cheatsheet/base-r.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/00_R_cheatsheet/base-r.pdf -------------------------------------------------------------------------------- /00_R_cheatsheet/data-import.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/00_R_cheatsheet/data-import.pdf -------------------------------------------------------------------------------- /00_R_cheatsheet/data-visualization-2.1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/00_R_cheatsheet/data-visualization-2.1.pdf -------------------------------------------------------------------------------- /00_R_cheatsheet/how-big-is-your-graph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/00_R_cheatsheet/how-big-is-your-graph.pdf -------------------------------------------------------------------------------- /00_R_cheatsheet/latexsheet-a4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/00_R_cheatsheet/latexsheet-a4.pdf -------------------------------------------------------------------------------- /00_R_cheatsheet/mlr.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/00_R_cheatsheet/mlr.pdf -------------------------------------------------------------------------------- /00_R_cheatsheet/rstudio-ide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/00_R_cheatsheet/rstudio-ide.pdf -------------------------------------------------------------------------------- /01.R_basics/.Rhistory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/01.R_basics/.Rhistory -------------------------------------------------------------------------------- /01.R_basics/.Rprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/01.R_basics/.Rprofile -------------------------------------------------------------------------------- /01.R_basics/.Rproj.user/85BFDB88/pcs/files-pane.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/01.R_basics/.Rproj.user/85BFDB88/pcs/files-pane.pper -------------------------------------------------------------------------------- /01.R_basics/.Rproj.user/85BFDB88/pcs/source-pane.pper: -------------------------------------------------------------------------------- 1 | { 2 | "activeTab" : -1 3 | } -------------------------------------------------------------------------------- /01.R_basics/.Rproj.user/85BFDB88/pcs/windowlayoutstate.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/01.R_basics/.Rproj.user/85BFDB88/pcs/windowlayoutstate.pper -------------------------------------------------------------------------------- /01.R_basics/.Rproj.user/85BFDB88/pcs/workbench-pane.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/01.R_basics/.Rproj.user/85BFDB88/pcs/workbench-pane.pper -------------------------------------------------------------------------------- /01.R_basics/.Rproj.user/85BFDB88/saved_source_markers: -------------------------------------------------------------------------------- 1 | {"active_set":"","sets":[]} -------------------------------------------------------------------------------- /01.R_basics/.Rproj.user/85BFDB88/sdb/prop/21D7C101: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /01.R_basics/.Rproj.user/85BFDB88/sdb/prop/379D85D8: -------------------------------------------------------------------------------- 1 | { 2 | "tempName" : "Untitled2" 3 | } -------------------------------------------------------------------------------- /01.R_basics/.Rproj.user/85BFDB88/sdb/prop/744B70AB: -------------------------------------------------------------------------------- 1 | { 2 | "tempName" : "Untitled2" 3 | } -------------------------------------------------------------------------------- /01.R_basics/.Rproj.user/85BFDB88/sdb/prop/74B9F72: -------------------------------------------------------------------------------- 1 | { 2 | "tempName" : "Untitled1" 3 | } -------------------------------------------------------------------------------- /01.R_basics/.Rproj.user/85BFDB88/sdb/prop/831FC73F: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /01.R_basics/.Rproj.user/85BFDB88/sdb/prop/8484127A: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /01.R_basics/.Rproj.user/85BFDB88/sdb/prop/A1366766: -------------------------------------------------------------------------------- 1 | { 2 | "tempName" : "Untitled2" 3 | } -------------------------------------------------------------------------------- /01.R_basics/.Rproj.user/85BFDB88/sdb/prop/CEA4D9CF: -------------------------------------------------------------------------------- 1 | { 2 | "tempName" : "Untitled1" 3 | } -------------------------------------------------------------------------------- /01.R_basics/.Rproj.user/85BFDB88/sdb/prop/FE6E3F80: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /01.R_basics/.Rproj.user/85BFDB88/sdb/prop/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/01.R_basics/.Rproj.user/85BFDB88/sdb/prop/INDEX -------------------------------------------------------------------------------- /01.R_basics/.Rproj.user/E5E84BA0/console06/A9888C92: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/01.R_basics/.Rproj.user/E5E84BA0/console06/A9888C92 -------------------------------------------------------------------------------- /01.R_basics/.Rproj.user/E5E84BA0/console06/INDEX001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/01.R_basics/.Rproj.user/E5E84BA0/console06/INDEX001 -------------------------------------------------------------------------------- /01.R_basics/.Rproj.user/E5E84BA0/pcs/debug-breakpoints.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/01.R_basics/.Rproj.user/E5E84BA0/pcs/debug-breakpoints.pper -------------------------------------------------------------------------------- /01.R_basics/.Rproj.user/E5E84BA0/pcs/files-pane.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/01.R_basics/.Rproj.user/E5E84BA0/pcs/files-pane.pper -------------------------------------------------------------------------------- /01.R_basics/.Rproj.user/E5E84BA0/pcs/source-pane.pper: -------------------------------------------------------------------------------- 1 | { 2 | "activeTab" : -1 3 | } -------------------------------------------------------------------------------- /01.R_basics/.Rproj.user/E5E84BA0/pcs/windowlayoutstate.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/01.R_basics/.Rproj.user/E5E84BA0/pcs/windowlayoutstate.pper -------------------------------------------------------------------------------- /01.R_basics/.Rproj.user/E5E84BA0/pcs/workbench-pane.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/01.R_basics/.Rproj.user/E5E84BA0/pcs/workbench-pane.pper -------------------------------------------------------------------------------- /01.R_basics/.Rproj.user/E5E84BA0/persistent-state: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/01.R_basics/.Rproj.user/E5E84BA0/persistent-state -------------------------------------------------------------------------------- /01.R_basics/.Rproj.user/E5E84BA0/rmd-outputs: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /01.R_basics/.Rproj.user/E5E84BA0/saved_source_markers: -------------------------------------------------------------------------------- 1 | {"active_set":"","sets":[]} -------------------------------------------------------------------------------- /01.R_basics/.Rproj.user/E5E84BA0/sdb/prop/164B4445: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /01.R_basics/.Rproj.user/E5E84BA0/sdb/prop/3109F3D7: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /01.R_basics/.Rproj.user/E5E84BA0/sdb/prop/A2540DB0: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /01.R_basics/.Rproj.user/E5E84BA0/sdb/prop/D1C4F31A: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /01.R_basics/.Rproj.user/E5E84BA0/sdb/prop/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/01.R_basics/.Rproj.user/E5E84BA0/sdb/prop/INDEX -------------------------------------------------------------------------------- /01.R_basics/.Rproj.user/E5E84BA0/sources/prop/15EA65EF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/01.R_basics/.Rproj.user/E5E84BA0/sources/prop/15EA65EF -------------------------------------------------------------------------------- /01.R_basics/.Rproj.user/E5E84BA0/sources/prop/164B4445: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /01.R_basics/.Rproj.user/E5E84BA0/sources/prop/21F08C5D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/01.R_basics/.Rproj.user/E5E84BA0/sources/prop/21F08C5D -------------------------------------------------------------------------------- /01.R_basics/.Rproj.user/E5E84BA0/sources/prop/3109F3D7: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /01.R_basics/.Rproj.user/E5E84BA0/sources/prop/36EB25E6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/01.R_basics/.Rproj.user/E5E84BA0/sources/prop/36EB25E6 -------------------------------------------------------------------------------- /01.R_basics/.Rproj.user/E5E84BA0/sources/prop/458BD16E: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/01.R_basics/.Rproj.user/E5E84BA0/sources/prop/458BD16E -------------------------------------------------------------------------------- /01.R_basics/.Rproj.user/E5E84BA0/sources/prop/459B1A29: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/01.R_basics/.Rproj.user/E5E84BA0/sources/prop/459B1A29 -------------------------------------------------------------------------------- /01.R_basics/.Rproj.user/E5E84BA0/sources/prop/4DCA36C4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/01.R_basics/.Rproj.user/E5E84BA0/sources/prop/4DCA36C4 -------------------------------------------------------------------------------- /01.R_basics/.Rproj.user/E5E84BA0/sources/prop/549FE1B7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/01.R_basics/.Rproj.user/E5E84BA0/sources/prop/549FE1B7 -------------------------------------------------------------------------------- /01.R_basics/.Rproj.user/E5E84BA0/sources/prop/92F98250: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/01.R_basics/.Rproj.user/E5E84BA0/sources/prop/92F98250 -------------------------------------------------------------------------------- /01.R_basics/.Rproj.user/E5E84BA0/sources/prop/99DDE91: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/01.R_basics/.Rproj.user/E5E84BA0/sources/prop/99DDE91 -------------------------------------------------------------------------------- /01.R_basics/.Rproj.user/E5E84BA0/sources/prop/9ADEF994: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/01.R_basics/.Rproj.user/E5E84BA0/sources/prop/9ADEF994 -------------------------------------------------------------------------------- /01.R_basics/.Rproj.user/E5E84BA0/sources/prop/A2540DB0: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /01.R_basics/.Rproj.user/E5E84BA0/sources/prop/D1C4F31A: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /01.R_basics/.Rproj.user/E5E84BA0/sources/prop/D2E06020: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/01.R_basics/.Rproj.user/E5E84BA0/sources/prop/D2E06020 -------------------------------------------------------------------------------- /01.R_basics/.Rproj.user/E5E84BA0/sources/prop/DC91C96F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/01.R_basics/.Rproj.user/E5E84BA0/sources/prop/DC91C96F -------------------------------------------------------------------------------- /01.R_basics/.Rproj.user/E5E84BA0/sources/prop/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/01.R_basics/.Rproj.user/E5E84BA0/sources/prop/INDEX -------------------------------------------------------------------------------- /01.R_basics/.Rproj.user/shared/notebooks/patch-chunk-names: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /01.R_basics/.Rproj.user/shared/notebooks/paths: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/01.R_basics/.Rproj.user/shared/notebooks/paths -------------------------------------------------------------------------------- /01.R_basics/R_basics.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/01.R_basics/R_basics.Rproj -------------------------------------------------------------------------------- /01.R_basics/_data/RL_descriptive.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/01.R_basics/_data/RL_descriptive.RData -------------------------------------------------------------------------------- /01.R_basics/_data/RL_raw_data/sub01/raw_data_sub01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/01.R_basics/_data/RL_raw_data/sub01/raw_data_sub01.txt -------------------------------------------------------------------------------- /01.R_basics/_data/RL_raw_data/sub02/raw_data_sub02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/01.R_basics/_data/RL_raw_data/sub02/raw_data_sub02.txt -------------------------------------------------------------------------------- /01.R_basics/_data/RL_raw_data/sub03/raw_data_sub03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/01.R_basics/_data/RL_raw_data/sub03/raw_data_sub03.txt -------------------------------------------------------------------------------- /01.R_basics/_data/RL_raw_data/sub04/raw_data_sub04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/01.R_basics/_data/RL_raw_data/sub04/raw_data_sub04.txt -------------------------------------------------------------------------------- /01.R_basics/_data/RL_raw_data/sub05/raw_data_sub05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/01.R_basics/_data/RL_raw_data/sub05/raw_data_sub05.txt -------------------------------------------------------------------------------- /01.R_basics/_data/RL_raw_data/sub06/raw_data_sub06.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/01.R_basics/_data/RL_raw_data/sub06/raw_data_sub06.txt -------------------------------------------------------------------------------- /01.R_basics/_data/RL_raw_data/sub07/raw_data_sub07.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/01.R_basics/_data/RL_raw_data/sub07/raw_data_sub07.txt -------------------------------------------------------------------------------- /01.R_basics/_data/RL_raw_data/sub08/raw_data_sub08.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/01.R_basics/_data/RL_raw_data/sub08/raw_data_sub08.txt -------------------------------------------------------------------------------- /01.R_basics/_data/RL_raw_data/sub09/raw_data_sub09.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/01.R_basics/_data/RL_raw_data/sub09/raw_data_sub09.txt -------------------------------------------------------------------------------- /01.R_basics/_data/RL_raw_data/sub10/raw_data_sub10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/01.R_basics/_data/RL_raw_data/sub10/raw_data_sub10.txt -------------------------------------------------------------------------------- /01.R_basics/_data/rawdata.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/01.R_basics/_data/rawdata.RData -------------------------------------------------------------------------------- /01.R_basics/_scripts/.Rhistory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/01.R_basics/_scripts/.Rhistory -------------------------------------------------------------------------------- /01.R_basics/_scripts/R_basics.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/01.R_basics/_scripts/R_basics.R -------------------------------------------------------------------------------- /01.R_basics/_scripts/R_basics_master.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/01.R_basics/_scripts/R_basics_master.R -------------------------------------------------------------------------------- /02.binomial_globe/.Rhistory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/02.binomial_globe/.Rhistory -------------------------------------------------------------------------------- /02.binomial_globe/.Rproj.user/85BFDB88/pcs/files-pane.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/02.binomial_globe/.Rproj.user/85BFDB88/pcs/files-pane.pper -------------------------------------------------------------------------------- /02.binomial_globe/.Rproj.user/85BFDB88/pcs/source-pane.pper: -------------------------------------------------------------------------------- 1 | { 2 | "activeTab" : -1 3 | } -------------------------------------------------------------------------------- /02.binomial_globe/.Rproj.user/85BFDB88/pcs/windowlayoutstate.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/02.binomial_globe/.Rproj.user/85BFDB88/pcs/windowlayoutstate.pper -------------------------------------------------------------------------------- /02.binomial_globe/.Rproj.user/85BFDB88/pcs/workbench-pane.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/02.binomial_globe/.Rproj.user/85BFDB88/pcs/workbench-pane.pper -------------------------------------------------------------------------------- /02.binomial_globe/.Rproj.user/85BFDB88/saved_source_markers: -------------------------------------------------------------------------------- 1 | {"active_set":"","sets":[]} -------------------------------------------------------------------------------- /02.binomial_globe/.Rproj.user/85BFDB88/sdb/prop/219A6A76: -------------------------------------------------------------------------------- 1 | { 2 | "tempName" : "Untitled1" 3 | } -------------------------------------------------------------------------------- /02.binomial_globe/.Rproj.user/85BFDB88/sdb/prop/27264CE7: -------------------------------------------------------------------------------- 1 | { 2 | "tempName" : "Untitled1" 3 | } -------------------------------------------------------------------------------- /02.binomial_globe/.Rproj.user/85BFDB88/sdb/prop/98B63ED: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /02.binomial_globe/.Rproj.user/85BFDB88/sdb/prop/A822BC41: -------------------------------------------------------------------------------- 1 | { 2 | "tempName" : "Untitled1" 3 | } -------------------------------------------------------------------------------- /02.binomial_globe/.Rproj.user/85BFDB88/sdb/prop/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/02.binomial_globe/.Rproj.user/85BFDB88/sdb/prop/INDEX -------------------------------------------------------------------------------- /02.binomial_globe/.Rproj.user/85BFDB88/sdb/s-661FFC26/4EB5859C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/02.binomial_globe/.Rproj.user/85BFDB88/sdb/s-661FFC26/4EB5859C -------------------------------------------------------------------------------- /02.binomial_globe/.Rproj.user/85BFDB88/sdb/s-661FFC26/62C350D7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/02.binomial_globe/.Rproj.user/85BFDB88/sdb/s-661FFC26/62C350D7 -------------------------------------------------------------------------------- /02.binomial_globe/.Rproj.user/85BFDB88/sdb/s-661FFC26/lock_file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /02.binomial_globe/.Rproj.user/E5E84BA0/console06/INDEX001: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /02.binomial_globe/.Rproj.user/E5E84BA0/pcs/files-pane.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/02.binomial_globe/.Rproj.user/E5E84BA0/pcs/files-pane.pper -------------------------------------------------------------------------------- /02.binomial_globe/.Rproj.user/E5E84BA0/pcs/source-pane.pper: -------------------------------------------------------------------------------- 1 | { 2 | "activeTab" : -1 3 | } -------------------------------------------------------------------------------- /02.binomial_globe/.Rproj.user/E5E84BA0/pcs/windowlayoutstate.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/02.binomial_globe/.Rproj.user/E5E84BA0/pcs/windowlayoutstate.pper -------------------------------------------------------------------------------- /02.binomial_globe/.Rproj.user/E5E84BA0/pcs/workbench-pane.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/02.binomial_globe/.Rproj.user/E5E84BA0/pcs/workbench-pane.pper -------------------------------------------------------------------------------- /02.binomial_globe/.Rproj.user/E5E84BA0/rmd-outputs: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /02.binomial_globe/.Rproj.user/E5E84BA0/saved_source_markers: -------------------------------------------------------------------------------- 1 | {"active_set":"","sets":[]} -------------------------------------------------------------------------------- /02.binomial_globe/.Rproj.user/E5E84BA0/sdb/prop/1BF77948: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /02.binomial_globe/.Rproj.user/E5E84BA0/sdb/prop/23AE707B: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /02.binomial_globe/.Rproj.user/E5E84BA0/sdb/prop/A622EFF1: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /02.binomial_globe/.Rproj.user/E5E84BA0/sdb/prop/C5855A84: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /02.binomial_globe/.Rproj.user/E5E84BA0/sdb/prop/C7ED2399: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /02.binomial_globe/.Rproj.user/E5E84BA0/sdb/prop/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/02.binomial_globe/.Rproj.user/E5E84BA0/sdb/prop/INDEX -------------------------------------------------------------------------------- /02.binomial_globe/.Rproj.user/E5E84BA0/sources/prop/1BF77948: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /02.binomial_globe/.Rproj.user/E5E84BA0/sources/prop/2294035D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/02.binomial_globe/.Rproj.user/E5E84BA0/sources/prop/2294035D -------------------------------------------------------------------------------- /02.binomial_globe/.Rproj.user/E5E84BA0/sources/prop/23AE707B: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /02.binomial_globe/.Rproj.user/E5E84BA0/sources/prop/41B773C0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/02.binomial_globe/.Rproj.user/E5E84BA0/sources/prop/41B773C0 -------------------------------------------------------------------------------- /02.binomial_globe/.Rproj.user/E5E84BA0/sources/prop/7B1C07DD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/02.binomial_globe/.Rproj.user/E5E84BA0/sources/prop/7B1C07DD -------------------------------------------------------------------------------- /02.binomial_globe/.Rproj.user/E5E84BA0/sources/prop/834EF88D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/02.binomial_globe/.Rproj.user/E5E84BA0/sources/prop/834EF88D -------------------------------------------------------------------------------- /02.binomial_globe/.Rproj.user/E5E84BA0/sources/prop/8934991D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/02.binomial_globe/.Rproj.user/E5E84BA0/sources/prop/8934991D -------------------------------------------------------------------------------- /02.binomial_globe/.Rproj.user/E5E84BA0/sources/prop/9CF38498: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/02.binomial_globe/.Rproj.user/E5E84BA0/sources/prop/9CF38498 -------------------------------------------------------------------------------- /02.binomial_globe/.Rproj.user/E5E84BA0/sources/prop/A622EFF1: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /02.binomial_globe/.Rproj.user/E5E84BA0/sources/prop/A673D520: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/02.binomial_globe/.Rproj.user/E5E84BA0/sources/prop/A673D520 -------------------------------------------------------------------------------- /02.binomial_globe/.Rproj.user/E5E84BA0/sources/prop/C5855A84: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /02.binomial_globe/.Rproj.user/E5E84BA0/sources/prop/C7ED2399: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /02.binomial_globe/.Rproj.user/E5E84BA0/sources/prop/DEB47860: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/02.binomial_globe/.Rproj.user/E5E84BA0/sources/prop/DEB47860 -------------------------------------------------------------------------------- /02.binomial_globe/.Rproj.user/E5E84BA0/sources/prop/E133D227: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/02.binomial_globe/.Rproj.user/E5E84BA0/sources/prop/E133D227 -------------------------------------------------------------------------------- /02.binomial_globe/.Rproj.user/E5E84BA0/sources/prop/E68E2A0C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/02.binomial_globe/.Rproj.user/E5E84BA0/sources/prop/E68E2A0C -------------------------------------------------------------------------------- /02.binomial_globe/.Rproj.user/E5E84BA0/sources/prop/EF199C8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/02.binomial_globe/.Rproj.user/E5E84BA0/sources/prop/EF199C8 -------------------------------------------------------------------------------- /02.binomial_globe/.Rproj.user/E5E84BA0/sources/prop/F2B70645: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/02.binomial_globe/.Rproj.user/E5E84BA0/sources/prop/F2B70645 -------------------------------------------------------------------------------- /02.binomial_globe/.Rproj.user/E5E84BA0/sources/prop/F80FEFB8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/02.binomial_globe/.Rproj.user/E5E84BA0/sources/prop/F80FEFB8 -------------------------------------------------------------------------------- /02.binomial_globe/.Rproj.user/E5E84BA0/sources/prop/FF1166D8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/02.binomial_globe/.Rproj.user/E5E84BA0/sources/prop/FF1166D8 -------------------------------------------------------------------------------- /02.binomial_globe/.Rproj.user/E5E84BA0/sources/prop/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/02.binomial_globe/.Rproj.user/E5E84BA0/sources/prop/INDEX -------------------------------------------------------------------------------- /02.binomial_globe/.Rproj.user/shared/notebooks/patch-chunk-names: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /02.binomial_globe/.Rproj.user/shared/notebooks/paths: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/02.binomial_globe/.Rproj.user/shared/notebooks/paths -------------------------------------------------------------------------------- /02.binomial_globe/_plots/binomial_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/02.binomial_globe/_plots/binomial_grid.png -------------------------------------------------------------------------------- /02.binomial_globe/_plots/dens_cmb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/02.binomial_globe/_plots/dens_cmb.png -------------------------------------------------------------------------------- /02.binomial_globe/_plots/dens_sep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/02.binomial_globe/_plots/dens_sep.png -------------------------------------------------------------------------------- /02.binomial_globe/_plots/trace_excl_warmup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/02.binomial_globe/_plots/trace_excl_warmup.png -------------------------------------------------------------------------------- /02.binomial_globe/_plots/trace_incl_warmup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/02.binomial_globe/_plots/trace_incl_warmup.png -------------------------------------------------------------------------------- /02.binomial_globe/_scripts/binomial_globe_grid.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/02.binomial_globe/_scripts/binomial_globe_grid.R -------------------------------------------------------------------------------- /02.binomial_globe/_scripts/binomial_globe_grid_master.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/02.binomial_globe/_scripts/binomial_globe_grid_master.R -------------------------------------------------------------------------------- /02.binomial_globe/_scripts/binomial_globe_main.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/02.binomial_globe/_scripts/binomial_globe_main.R -------------------------------------------------------------------------------- /02.binomial_globe/_scripts/binomial_globe_main_master.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/02.binomial_globe/_scripts/binomial_globe_main_master.R -------------------------------------------------------------------------------- /02.binomial_globe/_scripts/binomial_globe_model.stan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/02.binomial_globe/_scripts/binomial_globe_model.stan -------------------------------------------------------------------------------- /02.binomial_globe/_scripts/binomial_globe_model_v2.stan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/02.binomial_globe/_scripts/binomial_globe_model_v2.stan -------------------------------------------------------------------------------- /02.binomial_globe/_scripts/binomial_globe_model_v3.stan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/02.binomial_globe/_scripts/binomial_globe_model_v3.stan -------------------------------------------------------------------------------- /02.binomial_globe/_scripts/my_first_stan_data_story.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/02.binomial_globe/_scripts/my_first_stan_data_story.rds -------------------------------------------------------------------------------- /02.binomial_globe/_scripts/my_first_stan_data_story.stan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/02.binomial_globe/_scripts/my_first_stan_data_story.stan -------------------------------------------------------------------------------- /02.binomial_globe/binomial_globe.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/02.binomial_globe/binomial_globe.Rproj -------------------------------------------------------------------------------- /03.bernoulli_coin/.Rhistory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/03.bernoulli_coin/.Rhistory -------------------------------------------------------------------------------- /03.bernoulli_coin/.Rproj.user/85BFDB88/pcs/files-pane.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/03.bernoulli_coin/.Rproj.user/85BFDB88/pcs/files-pane.pper -------------------------------------------------------------------------------- /03.bernoulli_coin/.Rproj.user/85BFDB88/pcs/source-pane.pper: -------------------------------------------------------------------------------- 1 | { 2 | "activeTab" : -1 3 | } -------------------------------------------------------------------------------- /03.bernoulli_coin/.Rproj.user/85BFDB88/pcs/windowlayoutstate.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/03.bernoulli_coin/.Rproj.user/85BFDB88/pcs/windowlayoutstate.pper -------------------------------------------------------------------------------- /03.bernoulli_coin/.Rproj.user/85BFDB88/pcs/workbench-pane.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/03.bernoulli_coin/.Rproj.user/85BFDB88/pcs/workbench-pane.pper -------------------------------------------------------------------------------- /03.bernoulli_coin/.Rproj.user/85BFDB88/saved_source_markers: -------------------------------------------------------------------------------- 1 | {"active_set":"","sets":[]} -------------------------------------------------------------------------------- /03.bernoulli_coin/.Rproj.user/85BFDB88/sdb/prop/2325E13F: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /03.bernoulli_coin/.Rproj.user/85BFDB88/sdb/prop/28725252: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /03.bernoulli_coin/.Rproj.user/85BFDB88/sdb/prop/5AA3255A: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /03.bernoulli_coin/.Rproj.user/85BFDB88/sdb/prop/F20307BC: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /03.bernoulli_coin/.Rproj.user/85BFDB88/sdb/prop/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/03.bernoulli_coin/.Rproj.user/85BFDB88/sdb/prop/INDEX -------------------------------------------------------------------------------- /03.bernoulli_coin/.Rproj.user/E5E84BA0/console06/INDEX001: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /03.bernoulli_coin/.Rproj.user/E5E84BA0/pcs/files-pane.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/03.bernoulli_coin/.Rproj.user/E5E84BA0/pcs/files-pane.pper -------------------------------------------------------------------------------- /03.bernoulli_coin/.Rproj.user/E5E84BA0/pcs/source-pane.pper: -------------------------------------------------------------------------------- 1 | { 2 | "activeTab" : -1 3 | } -------------------------------------------------------------------------------- /03.bernoulli_coin/.Rproj.user/E5E84BA0/pcs/windowlayoutstate.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/03.bernoulli_coin/.Rproj.user/E5E84BA0/pcs/windowlayoutstate.pper -------------------------------------------------------------------------------- /03.bernoulli_coin/.Rproj.user/E5E84BA0/pcs/workbench-pane.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/03.bernoulli_coin/.Rproj.user/E5E84BA0/pcs/workbench-pane.pper -------------------------------------------------------------------------------- /03.bernoulli_coin/.Rproj.user/E5E84BA0/rmd-outputs: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /03.bernoulli_coin/.Rproj.user/E5E84BA0/saved_source_markers: -------------------------------------------------------------------------------- 1 | {"active_set":"","sets":[]} -------------------------------------------------------------------------------- /03.bernoulli_coin/.Rproj.user/E5E84BA0/sdb/prop/3C295BD3: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /03.bernoulli_coin/.Rproj.user/E5E84BA0/sdb/prop/94C3E1FD: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /03.bernoulli_coin/.Rproj.user/E5E84BA0/sdb/prop/AC2F9FA8: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /03.bernoulli_coin/.Rproj.user/E5E84BA0/sdb/prop/C737DA53: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /03.bernoulli_coin/.Rproj.user/E5E84BA0/sdb/prop/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/03.bernoulli_coin/.Rproj.user/E5E84BA0/sdb/prop/INDEX -------------------------------------------------------------------------------- /03.bernoulli_coin/.Rproj.user/E5E84BA0/sources/prop/10478B07: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/03.bernoulli_coin/.Rproj.user/E5E84BA0/sources/prop/10478B07 -------------------------------------------------------------------------------- /03.bernoulli_coin/.Rproj.user/E5E84BA0/sources/prop/12D21793: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/03.bernoulli_coin/.Rproj.user/E5E84BA0/sources/prop/12D21793 -------------------------------------------------------------------------------- /03.bernoulli_coin/.Rproj.user/E5E84BA0/sources/prop/2758855D: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /03.bernoulli_coin/.Rproj.user/E5E84BA0/sources/prop/3C295BD3: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /03.bernoulli_coin/.Rproj.user/E5E84BA0/sources/prop/94C3E1FD: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /03.bernoulli_coin/.Rproj.user/E5E84BA0/sources/prop/AC2F9FA8: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /03.bernoulli_coin/.Rproj.user/E5E84BA0/sources/prop/B6701B94: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/03.bernoulli_coin/.Rproj.user/E5E84BA0/sources/prop/B6701B94 -------------------------------------------------------------------------------- /03.bernoulli_coin/.Rproj.user/E5E84BA0/sources/prop/C737DA53: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /03.bernoulli_coin/.Rproj.user/E5E84BA0/sources/prop/CB97DBA9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/03.bernoulli_coin/.Rproj.user/E5E84BA0/sources/prop/CB97DBA9 -------------------------------------------------------------------------------- /03.bernoulli_coin/.Rproj.user/E5E84BA0/sources/prop/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/03.bernoulli_coin/.Rproj.user/E5E84BA0/sources/prop/INDEX -------------------------------------------------------------------------------- /03.bernoulli_coin/.Rproj.user/shared/notebooks/patch-chunk-names: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /03.bernoulli_coin/.Rproj.user/shared/notebooks/paths: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/03.bernoulli_coin/.Rproj.user/shared/notebooks/paths -------------------------------------------------------------------------------- /03.bernoulli_coin/_data/flip.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/03.bernoulli_coin/_data/flip.RData -------------------------------------------------------------------------------- /03.bernoulli_coin/_plots/dens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/03.bernoulli_coin/_plots/dens.png -------------------------------------------------------------------------------- /03.bernoulli_coin/_scripts/bernoulli_coin_main.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/03.bernoulli_coin/_scripts/bernoulli_coin_main.R -------------------------------------------------------------------------------- /03.bernoulli_coin/_scripts/bernoulli_coin_main_master.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/03.bernoulli_coin/_scripts/bernoulli_coin_main_master.R -------------------------------------------------------------------------------- /03.bernoulli_coin/_scripts/bernoulli_coin_model1.stan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/03.bernoulli_coin/_scripts/bernoulli_coin_model1.stan -------------------------------------------------------------------------------- /03.bernoulli_coin/_scripts/bernoulli_coin_model2.stan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/03.bernoulli_coin/_scripts/bernoulli_coin_model2.stan -------------------------------------------------------------------------------- /03.bernoulli_coin/_scripts/demo.stan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/03.bernoulli_coin/_scripts/demo.stan -------------------------------------------------------------------------------- /03.bernoulli_coin/bernoulli_coin.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/03.bernoulli_coin/bernoulli_coin.Rproj -------------------------------------------------------------------------------- /03.bernoulli_coin/coin.stan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/03.bernoulli_coin/coin.stan -------------------------------------------------------------------------------- /03.bernoulli_coin/main.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/03.bernoulli_coin/main.R -------------------------------------------------------------------------------- /04.regression_height/.Rhistory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/04.regression_height/.Rhistory -------------------------------------------------------------------------------- /04.regression_height/.Rproj.user/85BFDB88/pcs/files-pane.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/04.regression_height/.Rproj.user/85BFDB88/pcs/files-pane.pper -------------------------------------------------------------------------------- /04.regression_height/.Rproj.user/85BFDB88/pcs/source-pane.pper: -------------------------------------------------------------------------------- 1 | { 2 | "activeTab" : -1 3 | } -------------------------------------------------------------------------------- /04.regression_height/.Rproj.user/85BFDB88/pcs/windowlayoutstate.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/04.regression_height/.Rproj.user/85BFDB88/pcs/windowlayoutstate.pper -------------------------------------------------------------------------------- /04.regression_height/.Rproj.user/85BFDB88/pcs/workbench-pane.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/04.regression_height/.Rproj.user/85BFDB88/pcs/workbench-pane.pper -------------------------------------------------------------------------------- /04.regression_height/.Rproj.user/85BFDB88/saved_source_markers: -------------------------------------------------------------------------------- 1 | {"active_set":"","sets":[]} -------------------------------------------------------------------------------- /04.regression_height/.Rproj.user/85BFDB88/sdb/prop/199312FC: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /04.regression_height/.Rproj.user/85BFDB88/sdb/prop/1B2E1EB7: -------------------------------------------------------------------------------- 1 | { 2 | "tempName" : "Untitled1" 3 | } -------------------------------------------------------------------------------- /04.regression_height/.Rproj.user/85BFDB88/sdb/prop/244E44D5: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /04.regression_height/.Rproj.user/85BFDB88/sdb/prop/6AD13BC3: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /04.regression_height/.Rproj.user/85BFDB88/sdb/prop/AB763310: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /04.regression_height/.Rproj.user/85BFDB88/sdb/prop/C37181EF: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /04.regression_height/.Rproj.user/85BFDB88/sdb/prop/CA203852: -------------------------------------------------------------------------------- 1 | { 2 | "tempName" : "Untitled1" 3 | } -------------------------------------------------------------------------------- /04.regression_height/.Rproj.user/85BFDB88/sdb/prop/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/04.regression_height/.Rproj.user/85BFDB88/sdb/prop/INDEX -------------------------------------------------------------------------------- /04.regression_height/.Rproj.user/E5E84BA0/console06/INDEX001: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /04.regression_height/.Rproj.user/E5E84BA0/pcs/files-pane.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/04.regression_height/.Rproj.user/E5E84BA0/pcs/files-pane.pper -------------------------------------------------------------------------------- /04.regression_height/.Rproj.user/E5E84BA0/pcs/source-pane.pper: -------------------------------------------------------------------------------- 1 | { 2 | "activeTab" : -1 3 | } -------------------------------------------------------------------------------- /04.regression_height/.Rproj.user/E5E84BA0/pcs/windowlayoutstate.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/04.regression_height/.Rproj.user/E5E84BA0/pcs/windowlayoutstate.pper -------------------------------------------------------------------------------- /04.regression_height/.Rproj.user/E5E84BA0/pcs/workbench-pane.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/04.regression_height/.Rproj.user/E5E84BA0/pcs/workbench-pane.pper -------------------------------------------------------------------------------- /04.regression_height/.Rproj.user/E5E84BA0/rmd-outputs: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /04.regression_height/.Rproj.user/E5E84BA0/saved_source_markers: -------------------------------------------------------------------------------- 1 | {"active_set":"","sets":[]} -------------------------------------------------------------------------------- /04.regression_height/.Rproj.user/E5E84BA0/sdb/prop/5CE3B1F1: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /04.regression_height/.Rproj.user/E5E84BA0/sdb/prop/5D2D999F: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /04.regression_height/.Rproj.user/E5E84BA0/sdb/prop/9800ABA2: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /04.regression_height/.Rproj.user/E5E84BA0/sdb/prop/999F7736: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /04.regression_height/.Rproj.user/E5E84BA0/sdb/prop/A29A5609: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /04.regression_height/.Rproj.user/E5E84BA0/sdb/prop/AA7980F8: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /04.regression_height/.Rproj.user/E5E84BA0/sdb/prop/DDED2C52: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /04.regression_height/.Rproj.user/E5E84BA0/sdb/prop/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/04.regression_height/.Rproj.user/E5E84BA0/sdb/prop/INDEX -------------------------------------------------------------------------------- /04.regression_height/.Rproj.user/E5E84BA0/sources/prop/27CE6386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/04.regression_height/.Rproj.user/E5E84BA0/sources/prop/27CE6386 -------------------------------------------------------------------------------- /04.regression_height/.Rproj.user/E5E84BA0/sources/prop/5B72559A: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /04.regression_height/.Rproj.user/E5E84BA0/sources/prop/5CE3B1F1: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /04.regression_height/.Rproj.user/E5E84BA0/sources/prop/5D2D999F: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /04.regression_height/.Rproj.user/E5E84BA0/sources/prop/5EBB36B9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/04.regression_height/.Rproj.user/E5E84BA0/sources/prop/5EBB36B9 -------------------------------------------------------------------------------- /04.regression_height/.Rproj.user/E5E84BA0/sources/prop/63C6CFE7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/04.regression_height/.Rproj.user/E5E84BA0/sources/prop/63C6CFE7 -------------------------------------------------------------------------------- /04.regression_height/.Rproj.user/E5E84BA0/sources/prop/6DDDAE0F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/04.regression_height/.Rproj.user/E5E84BA0/sources/prop/6DDDAE0F -------------------------------------------------------------------------------- /04.regression_height/.Rproj.user/E5E84BA0/sources/prop/77D8B38: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/04.regression_height/.Rproj.user/E5E84BA0/sources/prop/77D8B38 -------------------------------------------------------------------------------- /04.regression_height/.Rproj.user/E5E84BA0/sources/prop/9389D645: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/04.regression_height/.Rproj.user/E5E84BA0/sources/prop/9389D645 -------------------------------------------------------------------------------- /04.regression_height/.Rproj.user/E5E84BA0/sources/prop/9800ABA2: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /04.regression_height/.Rproj.user/E5E84BA0/sources/prop/999F7736: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /04.regression_height/.Rproj.user/E5E84BA0/sources/prop/9D9F589F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/04.regression_height/.Rproj.user/E5E84BA0/sources/prop/9D9F589F -------------------------------------------------------------------------------- /04.regression_height/.Rproj.user/E5E84BA0/sources/prop/A29A5609: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /04.regression_height/.Rproj.user/E5E84BA0/sources/prop/AA7980F8: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /04.regression_height/.Rproj.user/E5E84BA0/sources/prop/CFE40B6A: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/04.regression_height/.Rproj.user/E5E84BA0/sources/prop/CFE40B6A -------------------------------------------------------------------------------- /04.regression_height/.Rproj.user/E5E84BA0/sources/prop/D1C6631D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/04.regression_height/.Rproj.user/E5E84BA0/sources/prop/D1C6631D -------------------------------------------------------------------------------- /04.regression_height/.Rproj.user/E5E84BA0/sources/prop/DDED2C52: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /04.regression_height/.Rproj.user/E5E84BA0/sources/prop/E2CE4190: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/04.regression_height/.Rproj.user/E5E84BA0/sources/prop/E2CE4190 -------------------------------------------------------------------------------- /04.regression_height/.Rproj.user/E5E84BA0/sources/prop/F6046F43: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/04.regression_height/.Rproj.user/E5E84BA0/sources/prop/F6046F43 -------------------------------------------------------------------------------- /04.regression_height/.Rproj.user/E5E84BA0/sources/prop/F7AB0937: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/04.regression_height/.Rproj.user/E5E84BA0/sources/prop/F7AB0937 -------------------------------------------------------------------------------- /04.regression_height/.Rproj.user/E5E84BA0/sources/prop/FE70C210: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/04.regression_height/.Rproj.user/E5E84BA0/sources/prop/FE70C210 -------------------------------------------------------------------------------- /04.regression_height/.Rproj.user/E5E84BA0/sources/prop/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/04.regression_height/.Rproj.user/E5E84BA0/sources/prop/INDEX -------------------------------------------------------------------------------- /04.regression_height/.Rproj.user/shared/notebooks/patch-chunk-names: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /04.regression_height/.Rproj.user/shared/notebooks/paths: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/04.regression_height/.Rproj.user/shared/notebooks/paths -------------------------------------------------------------------------------- /04.regression_height/_data/height.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/04.regression_height/_data/height.RData -------------------------------------------------------------------------------- /04.regression_height/_plots/dens_height_bar1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/04.regression_height/_plots/dens_height_bar1.png -------------------------------------------------------------------------------- /04.regression_height/_plots/dens_height_bar1_cmb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/04.regression_height/_plots/dens_height_bar1_cmb.png -------------------------------------------------------------------------------- /04.regression_height/_plots/halfCauchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/04.regression_height/_plots/halfCauchy.png -------------------------------------------------------------------------------- /04.regression_height/_plots/layer0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/04.regression_height/_plots/layer0.png -------------------------------------------------------------------------------- /04.regression_height/_plots/layer1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/04.regression_height/_plots/layer1.png -------------------------------------------------------------------------------- /04.regression_height/_plots/layer2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/04.regression_height/_plots/layer2.png -------------------------------------------------------------------------------- /04.regression_height/_plots/layer3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/04.regression_height/_plots/layer3.png -------------------------------------------------------------------------------- /04.regression_height/_plots/regressionline_lm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/04.regression_height/_plots/regressionline_lm.png -------------------------------------------------------------------------------- /04.regression_height/_plots/regressionline_lm_prediction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/04.regression_height/_plots/regressionline_lm_prediction.png -------------------------------------------------------------------------------- /04.regression_height/_plots/regressionlinge_lm_ppc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/04.regression_height/_plots/regressionlinge_lm_ppc.png -------------------------------------------------------------------------------- /04.regression_height/_scripts/HDIofMCMC.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/04.regression_height/_scripts/HDIofMCMC.R -------------------------------------------------------------------------------- /04.regression_height/_scripts/ggplot_layer.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/04.regression_height/_scripts/ggplot_layer.R -------------------------------------------------------------------------------- /04.regression_height/_scripts/plot_halfCauchy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/04.regression_height/_scripts/plot_halfCauchy.R -------------------------------------------------------------------------------- /04.regression_height/_scripts/regression_height_main.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/04.regression_height/_scripts/regression_height_main.R -------------------------------------------------------------------------------- /04.regression_height/_scripts/regression_height_main_master.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/04.regression_height/_scripts/regression_height_main_master.R -------------------------------------------------------------------------------- /04.regression_height/_scripts/regression_height_model.stan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/04.regression_height/_scripts/regression_height_model.stan -------------------------------------------------------------------------------- /04.regression_height/_scripts/regression_height_ppc_main.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/04.regression_height/_scripts/regression_height_ppc_main.R -------------------------------------------------------------------------------- /04.regression_height/_scripts/regression_height_ppc_main_master.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/04.regression_height/_scripts/regression_height_ppc_main_master.R -------------------------------------------------------------------------------- /04.regression_height/_scripts/regression_height_ppc_model.stan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/04.regression_height/_scripts/regression_height_ppc_model.stan -------------------------------------------------------------------------------- /04.regression_height/regression_height.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/04.regression_height/regression_height.Rproj -------------------------------------------------------------------------------- /05.regression_height_poly/.Rhistory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/05.regression_height_poly/.Rhistory -------------------------------------------------------------------------------- /05.regression_height_poly/.Rproj.user/85BFDB88/pcs/files-pane.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/05.regression_height_poly/.Rproj.user/85BFDB88/pcs/files-pane.pper -------------------------------------------------------------------------------- /05.regression_height_poly/.Rproj.user/85BFDB88/pcs/source-pane.pper: -------------------------------------------------------------------------------- 1 | { 2 | "activeTab" : -1 3 | } -------------------------------------------------------------------------------- /05.regression_height_poly/.Rproj.user/85BFDB88/pcs/windowlayoutstate.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/05.regression_height_poly/.Rproj.user/85BFDB88/pcs/windowlayoutstate.pper -------------------------------------------------------------------------------- /05.regression_height_poly/.Rproj.user/85BFDB88/pcs/workbench-pane.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/05.regression_height_poly/.Rproj.user/85BFDB88/pcs/workbench-pane.pper -------------------------------------------------------------------------------- /05.regression_height_poly/.Rproj.user/85BFDB88/saved_source_markers: -------------------------------------------------------------------------------- 1 | {"active_set":"","sets":[]} -------------------------------------------------------------------------------- /05.regression_height_poly/.Rproj.user/85BFDB88/sdb/prop/6D964266: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /05.regression_height_poly/.Rproj.user/85BFDB88/sdb/prop/D65B9677: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /05.regression_height_poly/.Rproj.user/85BFDB88/sdb/prop/E3FCAF92: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /05.regression_height_poly/.Rproj.user/85BFDB88/sdb/prop/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/05.regression_height_poly/.Rproj.user/85BFDB88/sdb/prop/INDEX -------------------------------------------------------------------------------- /05.regression_height_poly/.Rproj.user/E5E84BA0/console06/INDEX001: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /05.regression_height_poly/.Rproj.user/E5E84BA0/pcs/files-pane.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/05.regression_height_poly/.Rproj.user/E5E84BA0/pcs/files-pane.pper -------------------------------------------------------------------------------- /05.regression_height_poly/.Rproj.user/E5E84BA0/pcs/source-pane.pper: -------------------------------------------------------------------------------- 1 | { 2 | "activeTab" : -1 3 | } -------------------------------------------------------------------------------- /05.regression_height_poly/.Rproj.user/E5E84BA0/pcs/windowlayoutstate.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/05.regression_height_poly/.Rproj.user/E5E84BA0/pcs/windowlayoutstate.pper -------------------------------------------------------------------------------- /05.regression_height_poly/.Rproj.user/E5E84BA0/pcs/workbench-pane.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/05.regression_height_poly/.Rproj.user/E5E84BA0/pcs/workbench-pane.pper -------------------------------------------------------------------------------- /05.regression_height_poly/.Rproj.user/E5E84BA0/rmd-outputs: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /05.regression_height_poly/.Rproj.user/E5E84BA0/saved_source_markers: -------------------------------------------------------------------------------- 1 | {"active_set":"","sets":[]} -------------------------------------------------------------------------------- /05.regression_height_poly/.Rproj.user/E5E84BA0/sdb/per/t/55C1B7F9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/05.regression_height_poly/.Rproj.user/E5E84BA0/sdb/per/t/55C1B7F9 -------------------------------------------------------------------------------- /05.regression_height_poly/.Rproj.user/E5E84BA0/sdb/prop/1A41AE13: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /05.regression_height_poly/.Rproj.user/E5E84BA0/sdb/prop/26DC27C7: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /05.regression_height_poly/.Rproj.user/E5E84BA0/sdb/prop/51C73043: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /05.regression_height_poly/.Rproj.user/E5E84BA0/sdb/prop/7525F634: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /05.regression_height_poly/.Rproj.user/E5E84BA0/sdb/prop/7D85B486: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /05.regression_height_poly/.Rproj.user/E5E84BA0/sdb/prop/7EAC0447: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /05.regression_height_poly/.Rproj.user/E5E84BA0/sdb/prop/B58C3777: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /05.regression_height_poly/.Rproj.user/E5E84BA0/sdb/prop/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/05.regression_height_poly/.Rproj.user/E5E84BA0/sdb/prop/INDEX -------------------------------------------------------------------------------- /05.regression_height_poly/.Rproj.user/E5E84BA0/sources/prop/1A41AE13: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /05.regression_height_poly/.Rproj.user/E5E84BA0/sources/prop/1C261518: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/05.regression_height_poly/.Rproj.user/E5E84BA0/sources/prop/1C261518 -------------------------------------------------------------------------------- /05.regression_height_poly/.Rproj.user/E5E84BA0/sources/prop/26DC27C7: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /05.regression_height_poly/.Rproj.user/E5E84BA0/sources/prop/4A498D6D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/05.regression_height_poly/.Rproj.user/E5E84BA0/sources/prop/4A498D6D -------------------------------------------------------------------------------- /05.regression_height_poly/.Rproj.user/E5E84BA0/sources/prop/51C73043: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /05.regression_height_poly/.Rproj.user/E5E84BA0/sources/prop/7525F634: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /05.regression_height_poly/.Rproj.user/E5E84BA0/sources/prop/75F4ADB7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/05.regression_height_poly/.Rproj.user/E5E84BA0/sources/prop/75F4ADB7 -------------------------------------------------------------------------------- /05.regression_height_poly/.Rproj.user/E5E84BA0/sources/prop/7D85B486: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /05.regression_height_poly/.Rproj.user/E5E84BA0/sources/prop/7EAC0447: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /05.regression_height_poly/.Rproj.user/E5E84BA0/sources/prop/9643FB3A: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/05.regression_height_poly/.Rproj.user/E5E84BA0/sources/prop/9643FB3A -------------------------------------------------------------------------------- /05.regression_height_poly/.Rproj.user/E5E84BA0/sources/prop/B58C3777: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /05.regression_height_poly/.Rproj.user/E5E84BA0/sources/prop/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/05.regression_height_poly/.Rproj.user/E5E84BA0/sources/prop/INDEX -------------------------------------------------------------------------------- /05.regression_height_poly/.Rproj.user/shared/notebooks/patch-chunk-names: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /05.regression_height_poly/.Rproj.user/shared/notebooks/paths: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/05.regression_height_poly/.Rproj.user/shared/notebooks/paths -------------------------------------------------------------------------------- /05.regression_height_poly/_data/height.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/05.regression_height_poly/_data/height.RData -------------------------------------------------------------------------------- /05.regression_height_poly/_plots/regressionline_lm_poly1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/05.regression_height_poly/_plots/regressionline_lm_poly1.png -------------------------------------------------------------------------------- /05.regression_height_poly/_plots/regressionline_lm_poly2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/05.regression_height_poly/_plots/regressionline_lm_poly2.png -------------------------------------------------------------------------------- /05.regression_height_poly/_plots/scatter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/05.regression_height_poly/_plots/scatter.png -------------------------------------------------------------------------------- /05.regression_height_poly/_scripts/HDIofMCMC.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/05.regression_height_poly/_scripts/HDIofMCMC.R -------------------------------------------------------------------------------- /05.regression_height_poly/_scripts/regression_height_poly1_model.stan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/05.regression_height_poly/_scripts/regression_height_poly1_model.stan -------------------------------------------------------------------------------- /05.regression_height_poly/_scripts/regression_height_poly2_model.stan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/05.regression_height_poly/_scripts/regression_height_poly2_model.stan -------------------------------------------------------------------------------- /05.regression_height_poly/_scripts/regression_height_poly_main.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/05.regression_height_poly/_scripts/regression_height_poly_main.R -------------------------------------------------------------------------------- /05.regression_height_poly/_scripts/regression_height_poly_main_master.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/05.regression_height_poly/_scripts/regression_height_poly_main_master.R -------------------------------------------------------------------------------- /05.regression_height_poly/regression_height_poly.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/05.regression_height_poly/regression_height_poly.Rproj -------------------------------------------------------------------------------- /BayesCog_UKE_P1_LZ.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/BayesCog_UKE_P1_LZ.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei-zhang/BayesCog_Part1/HEAD/README.md --------------------------------------------------------------------------------