├── .Rprofile ├── .gitignore ├── LICENSE.md ├── R └── build.R ├── README.md ├── assets ├── images │ └── icon.png └── scss │ └── custom.scss ├── config.toml ├── config └── _default │ ├── languages.toml │ ├── menus.toml │ └── params.toml ├── content ├── authors │ ├── admin │ │ ├── _index.md │ │ └── avatar.jpg │ ├── brendan │ │ ├── _index.md │ │ └── avatar.jpg │ ├── cam │ │ ├── _index.md │ │ └── avatar.jpg │ └── cianna │ │ ├── _index.md │ │ └── avatar.jpg ├── courses │ ├── _index.md │ └── resources │ │ ├── _index.md │ │ ├── books.md │ │ ├── readings.md │ │ └── websites.md ├── home │ ├── about.md │ ├── code_of_conduct.md │ ├── hero.md │ ├── index.md │ ├── logistics.md │ ├── materials.md │ ├── people.md │ └── schedule.md ├── post │ ├── 00-welcome │ │ ├── featured.jpg │ │ ├── index.Rmd │ │ └── index.html │ ├── 01-r-basics │ │ ├── featured.png │ │ ├── index.Rmd │ │ ├── index.html │ │ └── index_files │ │ │ ├── anchor-sections │ │ │ ├── anchor-sections.css │ │ │ └── anchor-sections.js │ │ │ ├── fitvids │ │ │ └── fitvids.min.js │ │ │ └── header-attrs │ │ │ └── header-attrs.js │ ├── 02-data-types │ │ ├── featured.png │ │ ├── index.Rmd │ │ ├── index.html │ │ └── index_files │ │ │ ├── anchor-sections │ │ │ ├── anchor-sections.css │ │ │ └── anchor-sections.js │ │ │ ├── fitvids │ │ │ └── fitvids.min.js │ │ │ └── header-attrs │ │ │ └── header-attrs.js │ ├── 03-functions │ │ ├── featured.jpg │ │ ├── index.Rmd │ │ ├── index.html │ │ └── index_files │ │ │ ├── anchor-sections │ │ │ ├── anchor-sections.css │ │ │ └── anchor-sections.js │ │ │ ├── fitvids │ │ │ └── fitvids.min.js │ │ │ └── header-attrs │ │ │ └── header-attrs.js │ ├── 04-intro-tidyverse │ │ ├── featured.png │ │ ├── index.Rmd │ │ └── index.html │ ├── 05-importing-workflows │ │ ├── featured.png │ │ ├── index.Rmd │ │ ├── index.html │ │ └── index_files │ │ │ ├── anchor-sections │ │ │ ├── anchor-sections.css │ │ │ └── anchor-sections.js │ │ │ ├── fitvids │ │ │ └── fitvids.min.js │ │ │ └── header-attrs │ │ │ └── header-attrs.js │ ├── 06-ggplot2 │ │ ├── featured.png │ │ ├── index.Rmd │ │ ├── index.html │ │ └── index_files │ │ │ ├── anchor-sections │ │ │ ├── anchor-sections.css │ │ │ └── anchor-sections.js │ │ │ ├── fitvids │ │ │ └── fitvids.min.js │ │ │ └── header-attrs │ │ │ └── header-attrs.js │ ├── 07-dplyr │ │ ├── featured.png │ │ ├── index.Rmd │ │ ├── index.html │ │ └── index_files │ │ │ ├── anchor-sections │ │ │ ├── anchor-sections.css │ │ │ └── anchor-sections.js │ │ │ ├── fitvids │ │ │ └── fitvids.min.js │ │ │ └── header-attrs │ │ │ └── header-attrs.js │ ├── 08-tidyr │ │ ├── featured.png │ │ ├── index.Rmd │ │ ├── index.html │ │ └── index_files │ │ │ ├── anchor-sections │ │ │ ├── anchor-sections.css │ │ │ └── anchor-sections.js │ │ │ ├── fitvids │ │ │ └── fitvids.min.js │ │ │ └── header-attrs │ │ │ └── header-attrs.js │ ├── 09-rmarkdown │ │ ├── featured.png │ │ ├── index.Rmd │ │ └── index.html │ └── _index.md ├── prework │ ├── featured.jpg │ ├── heartyr.gif │ ├── index.Rmd │ └── index.html ├── privacy.md ├── resources │ ├── EDS.jpg │ ├── featured.jpg │ ├── index.Rmd │ └── index.html └── terms.md ├── data ├── fonts │ └── ssn.toml └── themes │ └── ssn.toml ├── exercises ├── 01_rstudio_basics │ ├── project.Rproj │ ├── rmarkdown_example.Rmd │ └── your_turn.Rmd ├── 02_data_types_structures │ ├── project.Rproj │ └── your_turn.Rmd ├── 03_functions_debugging │ ├── project.Rproj │ └── your_turn.Rmd ├── 05_import_workflows │ ├── data │ │ ├── more_data │ │ │ └── another_data_set.csv │ │ ├── pragmatic_scales_data.csv │ │ └── pragmatic_scales_data.sav │ ├── project.Rproj │ └── your_turn.Rmd ├── 06_ggplot2 │ ├── data │ │ └── pragmatic_scales_data.csv │ ├── project.Rproj │ └── your_turn.Rmd ├── 07_dplyr │ ├── data │ │ └── pragmatic_scales_data.csv │ ├── project.Rproj │ └── your_turn.Rmd └── 08_tidyr │ ├── data │ └── pragmatic_scales_data.csv │ ├── project.Rproj │ └── your_turn.Rmd ├── index.Rmd ├── layouts ├── partials │ └── custom_js.html └── shortcodes │ └── blogdown │ └── postref.html ├── netlify.toml ├── resources └── _gen │ ├── assets │ └── scss │ │ └── scss │ │ ├── main.scss_6c95cc1249b26b124274204dbf970c34.content │ │ ├── main.scss_6c95cc1249b26b124274204dbf970c34.json │ │ ├── main.scss_76ac6956597c32fec7ddf60d408db3ab.content │ │ └── main.scss_76ac6956597c32fec7ddf60d408db3ab.json │ └── images │ ├── authors │ ├── admin │ │ └── avatar_hu63278ac761bb20fde5cd6e9dfcf9f54c_735688_270x270_fill_q90_lanczos_center.jpg │ ├── brendan │ │ └── avatar_hue4061dab9af150946e172a410a9c07a4_208823_270x270_fill_q90_lanczos_center.jpg │ ├── cam │ │ └── avatar_hu77b901a0cf0b70f4196c1c983c7b3e52_22266_270x270_fill_q90_lanczos_center.jpg │ └── cianna │ │ └── avatar_hu72a449cb37c215277851fa0643f39584_20203_270x270_fill_q90_lanczos_center.jpg │ ├── images │ ├── icon_huc79af84eacbe7cfa354c9dddd569ecf6_275274_192x192_fill_lanczos_center_2.png │ ├── icon_huc79af84eacbe7cfa354c9dddd569ecf6_275274_32x32_fill_lanczos_center_2.png │ └── icon_huc79af84eacbe7cfa354c9dddd569ecf6_275274_512x512_fill_lanczos_center_2.png │ ├── post │ ├── 00-welcome │ │ ├── featured_hu69066f6168e2706a3c28437edb8628a0_1290360_150x0_resize_q90_lanczos.jpg │ │ └── featured_hu69066f6168e2706a3c28437edb8628a0_1290360_720x0_resize_q90_lanczos.jpg │ ├── 01-r-basics │ │ ├── featured_hu55e3d084eb4ac83a41024085b5066bab_1407005_150x0_resize_lanczos_2.png │ │ └── featured_hu55e3d084eb4ac83a41024085b5066bab_1407005_720x0_resize_lanczos_2.png │ ├── 02-data-types │ │ ├── featured_hu4f6eab14ffca34c3c3621f87d6955954_9895955_150x0_resize_lanczos_2.png │ │ └── featured_hu4f6eab14ffca34c3c3621f87d6955954_9895955_720x0_resize_lanczos_2.png │ ├── 03-functions │ │ ├── featured_hu69066f6168e2706a3c28437edb8628a0_1756613_150x0_resize_q90_lanczos.jpg │ │ └── featured_hu69066f6168e2706a3c28437edb8628a0_1756613_720x0_resize_q90_lanczos.jpg │ ├── 04-intro-tidyverse │ │ ├── featured_hud6965efdc9d60ec5e3eae04bc0a44bfe_3037550_150x0_resize_lanczos_2.png │ │ └── featured_hud6965efdc9d60ec5e3eae04bc0a44bfe_3037550_720x0_resize_lanczos_2.png │ ├── 05-importing-workflows │ │ ├── featured_huce19d7403d9d325b17fadf631c6104f6_3742192_150x0_resize_lanczos_2.png │ │ └── featured_huce19d7403d9d325b17fadf631c6104f6_3742192_720x0_resize_lanczos_2.png │ ├── 06-ggplot2 │ │ ├── featured_hud9c88ba00e94bd4c924fc8e3b6ef5f15_1590886_150x0_resize_lanczos_2.png │ │ └── featured_hud9c88ba00e94bd4c924fc8e3b6ef5f15_1590886_720x0_resize_lanczos_2.png │ ├── 07-dplyr │ │ ├── featured_hu063f8ca6dec3a8a82b2701532e18803e_1064382_150x0_resize_lanczos_2.png │ │ └── featured_hu063f8ca6dec3a8a82b2701532e18803e_1064382_720x0_resize_lanczos_2.png │ ├── 08-tidyr │ │ ├── featured_hu90210d294fcb8a7eb945a386c357347b_899877_150x0_resize_lanczos_2.png │ │ └── featured_hu90210d294fcb8a7eb945a386c357347b_899877_720x0_resize_lanczos_2.png │ └── 09-rmarkdown │ │ ├── featured_hue1abb264e2aa3540d524f05917e92d66_2417446_150x0_resize_lanczos_2.png │ │ └── featured_hue1abb264e2aa3540d524f05917e92d66_2417446_720x0_resize_lanczos_2.png │ ├── prework │ └── featured_hu8cd38a157da0414f5960b45837cffa4b_3025056_720x0_resize_q90_lanczos.jpg │ └── resources │ └── featured_hu4c38dfb5bb8db097d8791febddee99e5_2458669_720x0_resize_q90_lanczos.jpg ├── static ├── img │ └── ducks.jpg ├── note_box_icons │ ├── Lightbulb.png │ ├── Live-code.png │ ├── Your-turn.png │ ├── alert.png │ ├── book.png │ ├── bookmark.png │ ├── clock.png │ ├── code.png │ ├── download.png │ ├── fyi.png │ ├── github.png │ ├── link.png │ ├── people.png │ ├── profile.png │ └── uo_logo.png ├── post │ └── 2015-07-23-r-rmarkdown_files │ │ └── figure-html │ │ └── pie-1.png ├── rmarkdown-libs │ ├── fitvids-2.1.1 │ │ └── fitvids.min.js │ ├── fitvids │ │ └── fitvids.min.js │ ├── panelset-0.2.1 │ │ ├── panelset.css │ │ └── panelset.js │ └── panelset │ │ ├── panelset.css │ │ └── panelset.js └── slides │ ├── 00-slides.Rmd │ ├── 00-slides.html │ ├── 00-slides_files │ ├── clipboard-2.0.6 │ │ └── clipboard.min.js │ ├── remark-css-0.0.1 │ │ ├── default-fonts.css │ │ └── default.css │ ├── shareon-1.4.1 │ │ ├── shareon.min.css │ │ └── shareon.min.js │ └── xaringanExtra-shareagain-0.2.1 │ │ ├── shareagain.css │ │ └── shareagain.js │ ├── 01-slides.Rmd │ ├── 01-slides.html │ ├── 02-slides.Rmd │ ├── 02-slides.html │ ├── 03-slides.Rmd │ ├── 03-slides.html │ ├── 04-slides.Rmd │ ├── 04-slides.html │ ├── 05-slides.Rmd │ ├── 05-slides.html │ ├── 06-ggplot_flipbook.Rmd │ ├── 06-ggplot_flipbook.html │ ├── 06-ggplot_flipbook_files │ └── figure-html │ │ ├── scatterplot-1.png │ │ ├── scatterplot_user_01_output-1.png │ │ ├── scatterplot_user_02_output-1.png │ │ ├── scatterplot_user_03_output-1.png │ │ ├── scatterplot_user_04_output-1.png │ │ ├── scatterplot_user_05_output-1.png │ │ ├── scatterplot_user_06_output-1.png │ │ ├── scatterplot_user_07_output-1.png │ │ ├── scatterplot_user_08_output-1.png │ │ ├── scatterplot_user_09_output-1.png │ │ ├── scatterplot_user_10_output-1.png │ │ ├── scatterplot_user_11_output-1.png │ │ ├── scatterplot_user_12_output-1.png │ │ ├── scatterplot_user_13_output-1.png │ │ ├── scatterplot_user_14_output-1.png │ │ ├── scatterplot_user_15_output-1.png │ │ ├── scatterplot_user_16_output-1.png │ │ ├── scatterplot_user_17_output-1.png │ │ ├── scatterplot_user_18_output-1.png │ │ ├── scatterplot_user_19_output-1.png │ │ └── scatterplot_user_20_output-1.png │ ├── 06-slides.Rmd │ ├── 06-slides.html │ ├── 06-slides_files │ └── figure-html │ │ ├── penguins-hist-basic-out-1.png │ │ ├── penguins-hist-bins-out-1.png │ │ ├── penguins-hist-fill-out-1.png │ │ ├── penguins-point-color-out-1.png │ │ ├── penguins-point-error-1.png │ │ ├── penguins-point-error-out-1.png │ │ ├── penguins-point-facet-out-1.png │ │ ├── penguins-point-fixed-out-1.png │ │ ├── penguins-point-red-out-1.png │ │ ├── penguins-smooth-out-1.png │ │ ├── penguins-yt-q1-out-1.png │ │ ├── penguins-yt-q2-out-1.png │ │ ├── plot-1-1.png │ │ ├── plot-1-out-1.png │ │ ├── point-smooth-global-out-1.png │ │ ├── point-smooth-lm-out-1.png │ │ ├── smooth-color-global-out-1.png │ │ ├── smooth-color-global-override-out-1.png │ │ ├── unnamed-chunk-10-1.png │ │ ├── unnamed-chunk-11-1.png │ │ ├── unnamed-chunk-12-1.png │ │ ├── unnamed-chunk-13-1.png │ │ ├── unnamed-chunk-15-1.png │ │ ├── unnamed-chunk-16-1.png │ │ ├── unnamed-chunk-17-1.png │ │ └── unnamed-chunk-3-1.png │ ├── 07-slides.Rmd │ ├── 07-slides.html │ ├── 07-slides_files │ └── figure-html │ │ ├── unnamed-chunk-50-1.png │ │ ├── unnamed-chunk-51-1.png │ │ └── unnamed-chunk-53-1.png │ ├── 08-slides.Rmd │ ├── 08-slides.html │ ├── 09-rmarkdown_handout.Rmd │ ├── 09-rmarkdown_handout.html │ ├── 09-slides.Rmd │ ├── 09-slides.html │ ├── 09-what-is-rmd.Rmd │ ├── 09-what-is-rmd.html │ ├── assets │ └── css │ │ └── custom.css │ ├── data │ ├── another_data_set.csv │ ├── pragmatic_scales_data.csv │ └── pragmatic_scales_data.sav │ ├── images │ ├── breakr.gif │ ├── brendan.png │ ├── cam.png │ ├── cianna.png │ ├── coding_cases.png │ ├── create_project1.png │ ├── create_project2.png │ ├── create_project3.png │ ├── culmen_depth.png │ ├── data-types.png │ ├── data_science_workflow.png │ ├── debugging.jpg │ ├── dplyr.png │ ├── dplyr │ │ ├── arrange.png │ │ ├── filter.png │ │ ├── group_by.png │ │ ├── group_by_summarize.png │ │ ├── logical_operators.png │ │ ├── mutate.png │ │ ├── select.png │ │ ├── summarize.png │ │ └── summary_function.png │ ├── dplyr_filter.jpg │ ├── dplyr_mutate.png │ ├── engine_dashboard.png │ ├── error.jpg │ ├── example_rproj.png │ ├── filter.png │ ├── ggplot_ex_1.png │ ├── ggplot_ex_2.jpg │ ├── ggplot_ex_3.png │ ├── ggplot_ex_4.png │ ├── group_by-summarize.png │ ├── hadley.jpg │ ├── heartyr.gif │ ├── help_page_annotated.png │ ├── here.png │ ├── hex │ │ ├── dplyr.png │ │ ├── forcats.png │ │ ├── ggplot2.png │ │ ├── magrittr.png │ │ ├── palmerpenguins.png │ │ ├── purrr.png │ │ ├── readr.png │ │ ├── rio.png │ │ ├── stringr.png │ │ ├── tibble.png │ │ ├── tidyr.png │ │ └── tidyverse.png │ ├── mutate.png │ ├── package_yt_1.png │ ├── package_yt_2.png │ ├── package_yt_3.png │ ├── package_yt_4_1.png │ ├── package_yt_4_2.png │ ├── package_yt_5.png │ ├── penguins.png │ ├── penguins_hist.png │ ├── pipe-operator.png │ ├── pivot_longer_example.png │ ├── pivot_wider_example.png │ ├── ps_data_plot.png │ ├── r4ds-cover.png │ ├── r_logo.png │ ├── rainbowr.gif │ ├── rmarkdown │ │ ├── Knit-to-html.jpg │ │ ├── doc-live.jpg │ │ └── doc-make.jpg │ ├── rmarkdown_example.png │ ├── rmarkdown_example_title.png │ ├── rmarkdown_example_title_yaml.png │ ├── rmarkdown_wizards.png │ ├── rmd_annotated.png │ ├── rstudio_blank.png │ ├── rstudio_cloud.png │ ├── rstudio_console.png │ ├── rstudio_editor.png │ ├── rstudio_environment.png │ ├── rstudio_labelled.png │ ├── rstudio_logo.png │ ├── rstudio_plots.png │ ├── select.png │ ├── stormyr.gif │ ├── tidy_data.png │ ├── tidyr-longer-wider-modified.gif │ ├── tidyverse_package_load.png │ ├── tidyverse_packages.png │ ├── tidyverse_packages_purpose.png │ └── vector_example.png │ ├── libs │ ├── clipboard-2.0.6 │ │ └── clipboard.min.js │ ├── clipboard │ │ └── clipboard.min.js │ ├── countdown │ │ ├── countdown.css │ │ ├── countdown.js │ │ └── smb_stage_clear.mp3 │ ├── fitvids │ │ └── fitvids.min.js │ ├── font-awesome │ │ ├── css │ │ │ ├── fontawesome-all.css │ │ │ └── fontawesome-all.min.css │ │ ├── less │ │ │ ├── _animated.less │ │ │ ├── _bordered-pulled.less │ │ │ ├── _core.less │ │ │ ├── _fixed-width.less │ │ │ ├── _icons.less │ │ │ ├── _larger.less │ │ │ ├── _list.less │ │ │ ├── _mixins.less │ │ │ ├── _rotated-flipped.less │ │ │ ├── _screen-reader.less │ │ │ ├── _shims.less │ │ │ ├── _stacked.less │ │ │ ├── _variables.less │ │ │ ├── brands.less │ │ │ ├── fontawesome.less │ │ │ ├── regular.less │ │ │ ├── solid.less │ │ │ └── v4-shims.less │ │ ├── scss │ │ │ ├── _animated.scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _shims.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ ├── brands.scss │ │ │ ├── fontawesome.scss │ │ │ ├── regular.scss │ │ │ ├── solid.scss │ │ │ └── v4-shims.scss │ │ └── webfonts │ │ │ ├── fa-brands-400.eot │ │ │ ├── fa-brands-400.svg │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-brands-400.woff │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.eot │ │ │ ├── fa-regular-400.svg │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff │ │ │ ├── fa-regular-400.woff2 │ │ │ ├── fa-solid-900.eot │ │ │ ├── fa-solid-900.svg │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-solid-900.woff │ │ │ └── fa-solid-900.woff2 │ ├── header-attrs │ │ └── header-attrs.js │ ├── pagedtable │ │ ├── css │ │ │ └── pagedtable.css │ │ └── js │ │ │ └── pagedtable.js │ ├── panelset-0.2.1 │ │ ├── panelset.css │ │ └── panelset.js │ ├── panelset │ │ ├── panelset.css │ │ └── panelset.js │ ├── remark-css-0.0.1 │ │ ├── default.css │ │ ├── hygge.css │ │ └── ninjutsu.css │ ├── remark-css │ │ └── default.css │ ├── shareon-1.4.1 │ │ ├── shareon.min.css │ │ └── shareon.min.js │ ├── shareon │ │ ├── shareon.min.css │ │ └── shareon.min.js │ ├── tile-view-0.2.1 │ │ ├── tile-view.css │ │ └── tile-view.js │ ├── tile-view │ │ ├── tile-view.css │ │ └── tile-view.js │ ├── xaringanExtra-extra-styles │ │ └── xaringanExtra-extra-styles.css │ ├── xaringanExtra-shareagain-0.2.1 │ │ ├── shareagain.css │ │ └── shareagain.js │ └── xaringanExtra-shareagain │ │ ├── shareagain.css │ │ └── shareagain.js │ └── xaringan-themer.css ├── summeR-bootcamp-2020.Rproj └── themes └── hugo-academic ├── .editorconfig ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug-report.md │ └── feature-request.md ├── PULL_REQUEST_TEMPLATE.md ├── contributing.md ├── stale.yml └── support.md ├── .gitignore ├── LICENSE.md ├── README.md ├── academic.png ├── archetypes ├── authors │ ├── _index.md │ └── avatar.jpg ├── default.md ├── docs.md ├── home.md ├── post │ └── index.md ├── project │ └── index.md ├── publication │ └── index.md ├── slides │ └── index.md └── talk │ └── index.md ├── assets ├── css │ ├── reveal.css │ └── reveal_custom.css ├── images │ └── icon.png ├── js │ ├── academic-search.js │ ├── academic.js │ ├── algolia-search.js │ ├── mathjax-config.js │ └── vendor │ │ └── bootstrap.min.js └── scss │ ├── academic │ ├── _card.scss │ ├── _content.scss │ ├── _dark.scss │ ├── _docs.scss │ ├── _integrations.scss │ ├── _listings.scss │ ├── _nav.scss │ ├── _root.scss │ ├── _search.scss │ ├── _widgets.scss │ └── academic.scss │ ├── bootstrap_variables.scss │ ├── custom.scss │ ├── main.scss │ └── vendor │ └── bootstrap │ ├── _alert.scss │ ├── _badge.scss │ ├── _breadcrumb.scss │ ├── _button-group.scss │ ├── _buttons.scss │ ├── _card.scss │ ├── _carousel.scss │ ├── _close.scss │ ├── _code.scss │ ├── _custom-forms.scss │ ├── _dropdown.scss │ ├── _forms.scss │ ├── _functions.scss │ ├── _grid.scss │ ├── _images.scss │ ├── _input-group.scss │ ├── _jumbotron.scss │ ├── _list-group.scss │ ├── _media.scss │ ├── _mixins.scss │ ├── _modal.scss │ ├── _nav.scss │ ├── _navbar.scss │ ├── _pagination.scss │ ├── _popover.scss │ ├── _print.scss │ ├── _progress.scss │ ├── _reboot.scss │ ├── _root.scss │ ├── _spinners.scss │ ├── _tables.scss │ ├── _toasts.scss │ ├── _tooltip.scss │ ├── _transitions.scss │ ├── _type.scss │ ├── _utilities.scss │ ├── _variables.scss │ ├── bootstrap-grid.scss │ ├── bootstrap-reboot.scss │ ├── bootstrap.scss │ ├── mixins │ ├── _alert.scss │ ├── _background-variant.scss │ ├── _badge.scss │ ├── _border-radius.scss │ ├── _box-shadow.scss │ ├── _breakpoints.scss │ ├── _buttons.scss │ ├── _caret.scss │ ├── _clearfix.scss │ ├── _deprecate.scss │ ├── _float.scss │ ├── _forms.scss │ ├── _gradients.scss │ ├── _grid-framework.scss │ ├── _grid.scss │ ├── _hover.scss │ ├── _image.scss │ ├── _list-group.scss │ ├── _lists.scss │ ├── _nav-divider.scss │ ├── _pagination.scss │ ├── _reset-text.scss │ ├── _resize.scss │ ├── _screen-reader.scss │ ├── _size.scss │ ├── _table-row.scss │ ├── _text-emphasis.scss │ ├── _text-hide.scss │ ├── _text-truncate.scss │ ├── _transition.scss │ └── _visibility.scss │ ├── utilities │ ├── _align.scss │ ├── _background.scss │ ├── _borders.scss │ ├── _clearfix.scss │ ├── _display.scss │ ├── _embed.scss │ ├── _flex.scss │ ├── _float.scss │ ├── _overflow.scss │ ├── _position.scss │ ├── _screenreaders.scss │ ├── _shadows.scss │ ├── _sizing.scss │ ├── _spacing.scss │ ├── _stretched-link.scss │ ├── _text.scss │ └── _visibility.scss │ └── vendor │ └── _rfs.scss ├── data ├── academic.toml ├── assets.toml ├── fonts │ ├── classic.toml │ ├── minimal.toml │ ├── mr_robot.toml │ └── rose.toml ├── i18n │ └── languages.yaml ├── page_sharer.toml ├── publication_types.toml └── themes │ ├── 1950s.toml │ ├── apogee.toml │ ├── coffee.toml │ ├── dark.toml │ ├── forest.toml │ ├── minimal.toml │ ├── mr_robot.toml │ ├── ocean.toml │ ├── rose.toml │ └── strawberry.toml ├── exampleSite ├── config │ └── _default │ │ ├── config.toml │ │ ├── languages.toml │ │ ├── menus.toml │ │ └── params.toml ├── content │ ├── authors │ │ └── admin │ │ │ ├── _index.md │ │ │ └── avatar.jpg │ ├── courses │ │ ├── _index.md │ │ └── example │ │ │ ├── _index.md │ │ │ ├── example1.md │ │ │ └── example2.md │ ├── home │ │ ├── about.md │ │ ├── accomplishments.md │ │ ├── contact.md │ │ ├── demo.md │ │ ├── experience.md │ │ ├── featured.md │ │ ├── gallery │ │ │ ├── gallery │ │ │ │ ├── theme-1950s.png │ │ │ │ ├── theme-apogee.png │ │ │ │ ├── theme-coffee-playfair.png │ │ │ │ ├── theme-dark.png │ │ │ │ ├── theme-default.png │ │ │ │ ├── theme-forest.png │ │ │ │ ├── theme-ocean.png │ │ │ │ └── theme-strawberry.png │ │ │ └── index.md │ │ ├── hero.md │ │ ├── index.md │ │ ├── people.md │ │ ├── posts.md │ │ ├── projects.md │ │ ├── publications.md │ │ ├── skills.md │ │ ├── slider.md │ │ ├── tags.md │ │ └── talks.md │ ├── post │ │ ├── _index.md │ │ ├── getting-started │ │ │ ├── featured.jpg │ │ │ └── index.md │ │ ├── jupyter │ │ │ ├── featured.png │ │ │ ├── index.ipynb │ │ │ ├── index.md │ │ │ └── index_1_0.png │ │ └── writing-technical-content │ │ │ ├── featured.jpg │ │ │ └── index.md │ ├── privacy.md │ ├── project │ │ ├── external-project │ │ │ ├── featured.jpg │ │ │ └── index.md │ │ └── internal-project │ │ │ ├── featured.jpg │ │ │ └── index.md │ ├── publication │ │ ├── _index.md │ │ ├── conference-paper │ │ │ ├── cite.bib │ │ │ ├── featured.jpg │ │ │ └── index.md │ │ ├── journal-article │ │ │ ├── cite.bib │ │ │ ├── featured.jpg │ │ │ └── index.md │ │ └── preprint │ │ │ ├── featured.jpg │ │ │ └── index.md │ ├── slides │ │ └── example │ │ │ └── index.md │ ├── talk │ │ ├── _index.md │ │ └── example │ │ │ ├── featured.jpg │ │ │ └── index.md │ └── terms.md ├── resources │ └── _gen │ │ ├── assets │ │ └── scss │ │ │ └── scss │ │ │ ├── main.scss_6c95cc1249b26b124274204dbf970c34.content │ │ │ └── main.scss_6c95cc1249b26b124274204dbf970c34.json │ │ └── images │ │ ├── authors │ │ ├── admin │ │ │ └── avatar_hu52a603635ecebd45650b162dadabb4e5_12861_270x270_fill_q90_lanczos_center.jpg │ │ └── admin2 │ │ │ └── avatar_hu52a603635ecebd45650b162dadabb4e5_12861_270x270_fill_q90_lanczos_center.jpg │ │ ├── home │ │ └── gallery │ │ │ └── gallery │ │ │ ├── theme-1950s_huaf5482f8cea0c5a703a328640e3b7509_21614_0x190_resize_lanczos_2.png │ │ │ ├── theme-apogee_hu4b45d99db97150df01464c393bfd17d4_24119_0x190_resize_lanczos_2.png │ │ │ ├── theme-coffee-playfair_hu446a8f670cc5622adcc77b97ba95f6c5_22462_0x190_resize_lanczos_2.png │ │ │ ├── theme-dark_hu1e8601ecc47f58eada7743fdcd709d3d_21456_0x190_resize_lanczos_2.png │ │ │ ├── theme-default_huba6228b7bdf30e2f03f12ea91b2cba0d_21751_0x190_resize_lanczos_2.png │ │ │ ├── theme-forest_hu4f093a1c683134431456584193ea41ee_21797_0x190_resize_lanczos_2.png │ │ │ ├── theme-ocean_hu14831ccafc2219f30a7a096fa7617e01_21760_0x190_resize_lanczos_2.png │ │ │ └── theme-strawberry_hu36b0b347fcca08bd39e2df22dcedbdfb_39532_0x190_resize_lanczos_2.png │ │ ├── images │ │ ├── icon_hu0b7a4cb9992c9ac0e91bd28ffd38dd00_9727_192x192_fill_lanczos_center_2.png │ │ ├── icon_hu0b7a4cb9992c9ac0e91bd28ffd38dd00_9727_32x32_fill_lanczos_center_2.png │ │ └── icon_hu0b7a4cb9992c9ac0e91bd28ffd38dd00_9727_512x512_fill_lanczos_center_2.png │ │ ├── post │ │ ├── getting-started │ │ │ ├── featured_hub9ee31969f44a6711206a2baf9f065b4_241861_1200x0_resize_q90_lanczos.jpg │ │ │ └── featured_hub9ee31969f44a6711206a2baf9f065b4_241861_150x0_resize_q90_lanczos.jpg │ │ ├── jupyter │ │ │ ├── featured_hub1daa031c2af6888ff37bd93eb033a1a_71549_150x0_resize_lanczos_2.png │ │ │ └── featured_hub1daa031c2af6888ff37bd93eb033a1a_71549_720x0_resize_lanczos_2.png │ │ └── writing-technical-content │ │ │ ├── featured_huc72159e0fc0d14b85f60d34436a630f0_266353_150x0_resize_q90_lanczos.jpg │ │ │ └── featured_huc72159e0fc0d14b85f60d34436a630f0_266353_2560x2560_fit_q90_lanczos.jpg │ │ ├── project │ │ ├── external-project │ │ │ ├── featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_329522_550x0_resize_q90_lanczos.jpg │ │ │ └── featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_329522_720x0_resize_q90_lanczos.jpg │ │ └── internal-project │ │ │ ├── featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_224363_550x0_resize_q90_lanczos.jpg │ │ │ └── featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_224363_720x0_resize_q90_lanczos.jpg │ │ ├── publication │ │ ├── conference-paper │ │ │ ├── featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_312700_150x0_resize_q90_lanczos.jpg │ │ │ ├── featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_312700_720x0_resize_q90_lanczos.jpg │ │ │ └── featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_312700_918x517_fill_q90_lanczos_smart1.jpg │ │ ├── journal-article │ │ │ ├── featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_214168_150x0_resize_q90_lanczos.jpg │ │ │ └── featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_214168_720x0_resize_q90_lanczos.jpg │ │ └── preprint │ │ │ ├── featured_hu559a5add5185b02575aa8333502ab2cc_220813_150x0_resize_q90_lanczos.jpg │ │ │ └── featured_hu559a5add5185b02575aa8333502ab2cc_220813_720x0_resize_q90_lanczos.jpg │ │ └── talk │ │ └── example │ │ ├── featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_620088_150x0_resize_q90_lanczos.jpg │ │ └── featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_620088_720x0_resize_q90_lanczos.jpg └── static │ └── img │ ├── boards.jpg │ ├── headers │ └── bubbles-wide.jpg │ └── hero-academic.png ├── i18n ├── ca.yaml ├── cs.yaml ├── da.yaml ├── de.yaml ├── el.yaml ├── en.yaml ├── es.yaml ├── et.yaml ├── eu.yaml ├── fr.yaml ├── hu.yaml ├── id.yaml ├── it.yaml ├── ja.yaml ├── km.yaml ├── ko.yaml ├── lt.yaml ├── lv.yaml ├── nl.yaml ├── pl.yaml ├── pt.yaml ├── ro.yaml ├── ru.yaml ├── so.yaml ├── sv.yaml ├── tr.yaml ├── uk.yaml ├── vi.yaml ├── zh-Hant.yaml └── zh.yaml ├── images ├── screenshot.png ├── theme-1950s.png ├── theme-apogee.png ├── theme-coffee-playfair.png ├── theme-cupcake.png ├── theme-dark.png ├── theme-default.png ├── theme-forest.png ├── theme-ocean.png ├── theme-spacer.png ├── theme-strawberry.png ├── themes.png └── tn.png ├── layouts ├── 404.html ├── _default │ ├── _markup │ │ └── render-link.html │ ├── baseof.html │ ├── list.html │ ├── rss.xml │ └── single.html ├── authors │ ├── list.html │ └── terms.html ├── docs │ ├── list.html │ └── single.html ├── index.html ├── index.json ├── index.webmanifest ├── partials │ ├── citation.html │ ├── comments.html │ ├── comments │ │ ├── commento.html │ │ └── disqus.html │ ├── cookie_consent.html │ ├── custom_head.html │ ├── custom_js.html │ ├── docs_layout.html │ ├── docs_sidebar.html │ ├── docs_toc_foot.html │ ├── functions │ │ ├── get_address.html │ │ ├── get_author_name.html │ │ ├── get_event_dates.html │ │ ├── get_icon.html │ │ ├── get_logo.html │ │ ├── get_logo_url.html │ │ ├── get_pub_types.html │ │ └── parse_theme.html │ ├── jsonld │ │ ├── article.html │ │ ├── business.html │ │ ├── event.html │ │ ├── main.html │ │ └── website.html │ ├── li_card.html │ ├── li_citation.html │ ├── li_compact.html │ ├── li_list.html │ ├── marketing │ │ ├── google_analytics.html │ │ └── google_tag_manager.html │ ├── navbar.html │ ├── page_author.html │ ├── page_author_card.html │ ├── page_edit.html │ ├── page_footer.html │ ├── page_header.html │ ├── page_links.html │ ├── page_links_div.html │ ├── page_metadata.html │ ├── page_metadata_authors.html │ ├── pagination.html │ ├── portfolio_li_card.html │ ├── portfolio_li_compact.html │ ├── portfolio_li_list.html │ ├── portfolio_li_showcase.html │ ├── search.html │ ├── section_pager.html │ ├── share.html │ ├── site_footer.html │ ├── site_head.html │ ├── site_js.html │ ├── slides.html │ ├── social_links.html │ ├── tags.html │ ├── widget_page.html │ └── widgets │ │ ├── about.html │ │ ├── accomplishments.html │ │ ├── blank.html │ │ ├── contact.html │ │ ├── experience.html │ │ ├── featured.html │ │ ├── featurette.html │ │ ├── hero.html │ │ ├── pages.html │ │ ├── people.html │ │ ├── portfolio.html │ │ ├── slider.html │ │ └── tag_cloud.html ├── project │ └── single.html ├── publication │ └── single.html ├── section │ ├── docs.html │ ├── post.html │ ├── publication.html │ └── talk.html ├── shortcodes │ ├── alert.html │ ├── diagram.html │ ├── figure.html │ ├── fragment.html │ ├── gallery.html │ ├── gdocs.html │ ├── hl.html │ ├── icon.html │ ├── list_categories.html │ ├── list_tags.html │ ├── mention.html │ ├── slide.html │ ├── speaker_note.html │ ├── staticref.html │ ├── toc.html │ └── video.html ├── slides │ ├── baseof.html │ ├── list.html │ └── single.html ├── talk │ └── single.html └── widget_page │ └── single.html ├── netlify.toml ├── package-lock.json ├── package.json ├── scripts ├── gen_demo_resources.sh ├── list_language_packs.py ├── sync_i18n.py ├── update_bootstrap.sh └── view_demo.sh ├── static └── js │ └── vendor │ └── reveal.js │ └── plugin │ └── notes │ ├── notes.html │ └── notes.js └── theme.toml /.Rprofile: -------------------------------------------------------------------------------- 1 | if (file.exists("~/.Rprofile")) { 2 | base::sys.source("~/.Rprofile", envir = environment()) 3 | } 4 | 5 | options(blogdown.new_bundle = TRUE) 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | .Ruserdata 5 | .DS_Store 6 | public/ 7 | static/labs/data/artworks.csv 8 | -------------------------------------------------------------------------------- /R/build.R: -------------------------------------------------------------------------------- 1 | blogdown::build_dir("static") 2 | -------------------------------------------------------------------------------- /assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/assets/images/icon.png -------------------------------------------------------------------------------- /config/_default/languages.toml: -------------------------------------------------------------------------------- 1 | # Languages 2 | # Create a `[X]` block for each language you want, where X is the language ID. 3 | # Refer to https://sourcethemes.com/academic/docs/language/ 4 | 5 | # Configure the English version of the site. 6 | [en] 7 | languageCode = "en-us" 8 | # contentDir = "content/en" # Uncomment for multi-lingual sites, and move English content into `en` sub-folder. 9 | 10 | # Uncomment the lines below to configure your website in a second language. 11 | #[zh] 12 | # languageCode = "zh-Hans" 13 | # contentDir = "content/zh" 14 | # title = "Chinese website title..." 15 | # [zh.params] 16 | # description = "Site description in Chinese..." 17 | # [[zh.menu.main]] 18 | # name = "Wo" 19 | # url = "#about" 20 | # weight = 1 21 | -------------------------------------------------------------------------------- /content/authors/admin/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/content/authors/admin/avatar.jpg -------------------------------------------------------------------------------- /content/authors/brendan/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/content/authors/brendan/avatar.jpg -------------------------------------------------------------------------------- /content/authors/cam/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/content/authors/cam/avatar.jpg -------------------------------------------------------------------------------- /content/authors/cianna/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/content/authors/cianna/avatar.jpg -------------------------------------------------------------------------------- /content/courses/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | header: 3 | caption: "" 4 | image: "" 5 | layout: docs 6 | title: Courses 7 | --- 8 | 9 | -------------------------------------------------------------------------------- /content/courses/resources/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | date: "2018-09-09T00:00:00Z" 3 | draft: false 4 | lastmod: "2018-09-09T00:00:00Z" 5 | linktitle: Data Visualization 6 | menu: 7 | example: 8 | name: Overview 9 | weight: 1 10 | summary: Learn how to use Academic's docs layout for publishing online courses, software 11 | documentation, and tutorials. 12 | title: Overview 13 | toc: true 14 | type: docs 15 | weight: 1 16 | --- 17 | 18 | The following are all *free* books, available to read online: 19 | 20 | - Modern Dive: http://moderndive.com 21 | - R for Data Science: http://r4ds.had.co.nz 22 | - Fundamentals of Data Visualization: http://serialmentor.com/dataviz/ 23 | - Data Visualization: A Practical Introduction: http://socviz.co 24 | -------------------------------------------------------------------------------- /content/home/about.md: -------------------------------------------------------------------------------- 1 | +++ 2 | # About widget. 3 | widget = "about" # See https://sourcethemes.com/academic/docs/page-builder/ 4 | headless = true # This file represents a page section. 5 | active = true # Activate this widget? true/false 6 | weight = 10 # Order that this section will appear in. 7 | 8 | title = "" 9 | 10 | # Choose the user profile to display 11 | # This should be the username of a profile in your `content/authors/` folder. 12 | # See https://sourcethemes.com/academic/docs/get-started/#introduce-yourself 13 | author = "admin" 14 | +++ 15 | -------------------------------------------------------------------------------- /content/home/index.md: -------------------------------------------------------------------------------- 1 | +++ 2 | # Homepage 3 | type = "widget_page" 4 | headless = true # Homepage is headless, other widget pages are not. 5 | +++ 6 | -------------------------------------------------------------------------------- /content/post/00-welcome/featured.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/content/post/00-welcome/featured.jpg -------------------------------------------------------------------------------- /content/post/01-r-basics/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/content/post/01-r-basics/featured.png -------------------------------------------------------------------------------- /content/post/01-r-basics/index_files/anchor-sections/anchor-sections.css: -------------------------------------------------------------------------------- 1 | /* Styles for section anchors */ 2 | a.anchor-section {margin-left: 10px; visibility: hidden; color: inherit;} 3 | a.anchor-section::before {content: '#';} 4 | .hasAnchor:hover a.anchor-section {visibility: visible;} 5 | -------------------------------------------------------------------------------- /content/post/01-r-basics/index_files/header-attrs/header-attrs.js: -------------------------------------------------------------------------------- 1 | // Pandoc 2.9 adds attributes on both header and div. We remove the former (to 2 | // be compatible with the behavior of Pandoc < 2.8). 3 | document.addEventListener('DOMContentLoaded', function(e) { 4 | var hs = document.querySelectorAll("div.section[class*='level'] > :first-child"); 5 | var i, h, a; 6 | for (i = 0; i < hs.length; i++) { 7 | h = hs[i]; 8 | if (!/^h[1-6]$/i.test(h.tagName)) continue; // it should be a header h1-h6 9 | a = h.attributes; 10 | while (a.length > 0) h.removeAttribute(a[0].name); 11 | } 12 | }); 13 | -------------------------------------------------------------------------------- /content/post/02-data-types/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/content/post/02-data-types/featured.png -------------------------------------------------------------------------------- /content/post/02-data-types/index_files/anchor-sections/anchor-sections.css: -------------------------------------------------------------------------------- 1 | /* Styles for section anchors */ 2 | a.anchor-section {margin-left: 10px; visibility: hidden; color: inherit;} 3 | a.anchor-section::before {content: '#';} 4 | .hasAnchor:hover a.anchor-section {visibility: visible;} 5 | -------------------------------------------------------------------------------- /content/post/02-data-types/index_files/header-attrs/header-attrs.js: -------------------------------------------------------------------------------- 1 | // Pandoc 2.9 adds attributes on both header and div. We remove the former (to 2 | // be compatible with the behavior of Pandoc < 2.8). 3 | document.addEventListener('DOMContentLoaded', function(e) { 4 | var hs = document.querySelectorAll("div.section[class*='level'] > :first-child"); 5 | var i, h, a; 6 | for (i = 0; i < hs.length; i++) { 7 | h = hs[i]; 8 | if (!/^h[1-6]$/i.test(h.tagName)) continue; // it should be a header h1-h6 9 | a = h.attributes; 10 | while (a.length > 0) h.removeAttribute(a[0].name); 11 | } 12 | }); 13 | -------------------------------------------------------------------------------- /content/post/03-functions/featured.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/content/post/03-functions/featured.jpg -------------------------------------------------------------------------------- /content/post/03-functions/index_files/anchor-sections/anchor-sections.css: -------------------------------------------------------------------------------- 1 | /* Styles for section anchors */ 2 | a.anchor-section {margin-left: 10px; visibility: hidden; color: inherit;} 3 | a.anchor-section::before {content: '#';} 4 | .hasAnchor:hover a.anchor-section {visibility: visible;} 5 | -------------------------------------------------------------------------------- /content/post/03-functions/index_files/header-attrs/header-attrs.js: -------------------------------------------------------------------------------- 1 | // Pandoc 2.9 adds attributes on both header and div. We remove the former (to 2 | // be compatible with the behavior of Pandoc < 2.8). 3 | document.addEventListener('DOMContentLoaded', function(e) { 4 | var hs = document.querySelectorAll("div.section[class*='level'] > :first-child"); 5 | var i, h, a; 6 | for (i = 0; i < hs.length; i++) { 7 | h = hs[i]; 8 | if (!/^h[1-6]$/i.test(h.tagName)) continue; // it should be a header h1-h6 9 | a = h.attributes; 10 | while (a.length > 0) h.removeAttribute(a[0].name); 11 | } 12 | }); 13 | -------------------------------------------------------------------------------- /content/post/04-intro-tidyverse/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/content/post/04-intro-tidyverse/featured.png -------------------------------------------------------------------------------- /content/post/05-importing-workflows/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/content/post/05-importing-workflows/featured.png -------------------------------------------------------------------------------- /content/post/05-importing-workflows/index_files/anchor-sections/anchor-sections.css: -------------------------------------------------------------------------------- 1 | /* Styles for section anchors */ 2 | a.anchor-section {margin-left: 10px; visibility: hidden; color: inherit;} 3 | a.anchor-section::before {content: '#';} 4 | .hasAnchor:hover a.anchor-section {visibility: visible;} 5 | -------------------------------------------------------------------------------- /content/post/05-importing-workflows/index_files/header-attrs/header-attrs.js: -------------------------------------------------------------------------------- 1 | // Pandoc 2.9 adds attributes on both header and div. We remove the former (to 2 | // be compatible with the behavior of Pandoc < 2.8). 3 | document.addEventListener('DOMContentLoaded', function(e) { 4 | var hs = document.querySelectorAll("div.section[class*='level'] > :first-child"); 5 | var i, h, a; 6 | for (i = 0; i < hs.length; i++) { 7 | h = hs[i]; 8 | if (!/^h[1-6]$/i.test(h.tagName)) continue; // it should be a header h1-h6 9 | a = h.attributes; 10 | while (a.length > 0) h.removeAttribute(a[0].name); 11 | } 12 | }); 13 | -------------------------------------------------------------------------------- /content/post/06-ggplot2/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/content/post/06-ggplot2/featured.png -------------------------------------------------------------------------------- /content/post/06-ggplot2/index_files/anchor-sections/anchor-sections.css: -------------------------------------------------------------------------------- 1 | /* Styles for section anchors */ 2 | a.anchor-section {margin-left: 10px; visibility: hidden; color: inherit;} 3 | a.anchor-section::before {content: '#';} 4 | .hasAnchor:hover a.anchor-section {visibility: visible;} 5 | -------------------------------------------------------------------------------- /content/post/06-ggplot2/index_files/header-attrs/header-attrs.js: -------------------------------------------------------------------------------- 1 | // Pandoc 2.9 adds attributes on both header and div. We remove the former (to 2 | // be compatible with the behavior of Pandoc < 2.8). 3 | document.addEventListener('DOMContentLoaded', function(e) { 4 | var hs = document.querySelectorAll("div.section[class*='level'] > :first-child"); 5 | var i, h, a; 6 | for (i = 0; i < hs.length; i++) { 7 | h = hs[i]; 8 | if (!/^h[1-6]$/i.test(h.tagName)) continue; // it should be a header h1-h6 9 | a = h.attributes; 10 | while (a.length > 0) h.removeAttribute(a[0].name); 11 | } 12 | }); 13 | -------------------------------------------------------------------------------- /content/post/07-dplyr/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/content/post/07-dplyr/featured.png -------------------------------------------------------------------------------- /content/post/07-dplyr/index_files/anchor-sections/anchor-sections.css: -------------------------------------------------------------------------------- 1 | /* Styles for section anchors */ 2 | a.anchor-section {margin-left: 10px; visibility: hidden; color: inherit;} 3 | a.anchor-section::before {content: '#';} 4 | .hasAnchor:hover a.anchor-section {visibility: visible;} 5 | -------------------------------------------------------------------------------- /content/post/07-dplyr/index_files/header-attrs/header-attrs.js: -------------------------------------------------------------------------------- 1 | // Pandoc 2.9 adds attributes on both header and div. We remove the former (to 2 | // be compatible with the behavior of Pandoc < 2.8). 3 | document.addEventListener('DOMContentLoaded', function(e) { 4 | var hs = document.querySelectorAll("div.section[class*='level'] > :first-child"); 5 | var i, h, a; 6 | for (i = 0; i < hs.length; i++) { 7 | h = hs[i]; 8 | if (!/^h[1-6]$/i.test(h.tagName)) continue; // it should be a header h1-h6 9 | a = h.attributes; 10 | while (a.length > 0) h.removeAttribute(a[0].name); 11 | } 12 | }); 13 | -------------------------------------------------------------------------------- /content/post/08-tidyr/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/content/post/08-tidyr/featured.png -------------------------------------------------------------------------------- /content/post/08-tidyr/index_files/anchor-sections/anchor-sections.css: -------------------------------------------------------------------------------- 1 | /* Styles for section anchors */ 2 | a.anchor-section {margin-left: 10px; visibility: hidden; color: inherit;} 3 | a.anchor-section::before {content: '#';} 4 | .hasAnchor:hover a.anchor-section {visibility: visible;} 5 | -------------------------------------------------------------------------------- /content/post/08-tidyr/index_files/header-attrs/header-attrs.js: -------------------------------------------------------------------------------- 1 | // Pandoc 2.9 adds attributes on both header and div. We remove the former (to 2 | // be compatible with the behavior of Pandoc < 2.8). 3 | document.addEventListener('DOMContentLoaded', function(e) { 4 | var hs = document.querySelectorAll("div.section[class*='level'] > :first-child"); 5 | var i, h, a; 6 | for (i = 0; i < hs.length; i++) { 7 | h = hs[i]; 8 | if (!/^h[1-6]$/i.test(h.tagName)) continue; // it should be a header h1-h6 9 | a = h.attributes; 10 | while (a.length > 0) h.removeAttribute(a[0].name); 11 | } 12 | }); 13 | -------------------------------------------------------------------------------- /content/post/09-rmarkdown/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/content/post/09-rmarkdown/featured.png -------------------------------------------------------------------------------- /content/post/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | header: 3 | caption: "" 4 | image: "" 5 | title: Posts 6 | view: 2 7 | --- 8 | -------------------------------------------------------------------------------- /content/prework/featured.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/content/prework/featured.jpg -------------------------------------------------------------------------------- /content/prework/heartyr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/content/prework/heartyr.gif -------------------------------------------------------------------------------- /content/privacy.md: -------------------------------------------------------------------------------- 1 | --- 2 | commentable: false 3 | date: "2018-06-28T00:00:00+01:00" 4 | draft: true 5 | editable: false 6 | header: 7 | caption: "" 8 | image: "" 9 | share: false 10 | title: Privacy Policy 11 | --- 12 | 13 | ... 14 | -------------------------------------------------------------------------------- /content/resources/EDS.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/content/resources/EDS.jpg -------------------------------------------------------------------------------- /content/resources/featured.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/content/resources/featured.jpg -------------------------------------------------------------------------------- /content/terms.md: -------------------------------------------------------------------------------- 1 | --- 2 | commentable: false 3 | date: "2018-06-28T00:00:00+01:00" 4 | draft: true 5 | editable: false 6 | header: 7 | caption: "" 8 | image: "" 9 | share: false 10 | title: Terms 11 | --- 12 | 13 | ... 14 | -------------------------------------------------------------------------------- /data/fonts/ssn.toml: -------------------------------------------------------------------------------- 1 | # Font style metadata 2 | name = "sharing-short-notice" 3 | 4 | # Optional Google font URL 5 | google_fonts = "Noto+Serif+JP|Roboto+Mono|Source+Code+Pro|Lato" 6 | 7 | # Font families 8 | heading_font = "Noto Serif JP" 9 | body_font = "Lato" 10 | nav_font = "Lato" 11 | mono_font = "Source Code Pro" 12 | 13 | -------------------------------------------------------------------------------- /exercises/01_rstudio_basics/project.Rproj: -------------------------------------------------------------------------------- 1 | Version: 1.0 2 | 3 | RestoreWorkspace: Default 4 | SaveWorkspace: Default 5 | AlwaysSaveHistory: Default 6 | 7 | EnableCodeIndexing: Yes 8 | UseSpacesForTab: Yes 9 | NumSpacesForTab: 2 10 | Encoding: UTF-8 11 | 12 | RnwWeave: Sweave 13 | LaTeX: pdfLaTeX 14 | -------------------------------------------------------------------------------- /exercises/01_rstudio_basics/your_turn.Rmd: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Your Turn" 3 | output: html_document 4 | --- 5 | 6 | # Your turn 1 7 | 8 | 1. Create a variable called `var_1` that is equal to 4. 9 | 10 | ```{r} 11 | # Q1. 12 | 13 | ``` 14 | 15 | 16 | 2. Then create a variable called `var_2` that is `var_1` raised to the power of 6. Print the results (i.e. check what value is assigned to `var_2`). 17 | 18 | ```{r} 19 | # Q2. 20 | 21 | ``` 22 | 23 | 24 | 25 | 26 | # Your turn 2 27 | 28 | 1. Open the file `rmarkdown_example.Rmd` and click `knit`. Take a look at the resulting file called `rmarkdown_example.html`. 29 | 30 | 31 | 2. Go back to `rmarkdown_example.Rmd`. Change the title to `"[Your name]'s example R Markdown Document"` and re-knit. 32 | 33 | 34 | -------------------------------------------------------------------------------- /exercises/02_data_types_structures/project.Rproj: -------------------------------------------------------------------------------- 1 | Version: 1.0 2 | 3 | RestoreWorkspace: Default 4 | SaveWorkspace: Default 5 | AlwaysSaveHistory: Default 6 | 7 | EnableCodeIndexing: Yes 8 | UseSpacesForTab: Yes 9 | NumSpacesForTab: 2 10 | Encoding: UTF-8 11 | 12 | RnwWeave: Sweave 13 | LaTeX: pdfLaTeX 14 | -------------------------------------------------------------------------------- /exercises/03_functions_debugging/project.Rproj: -------------------------------------------------------------------------------- 1 | Version: 1.0 2 | 3 | RestoreWorkspace: Default 4 | SaveWorkspace: Default 5 | AlwaysSaveHistory: Default 6 | 7 | EnableCodeIndexing: Yes 8 | UseSpacesForTab: Yes 9 | NumSpacesForTab: 2 10 | Encoding: UTF-8 11 | 12 | RnwWeave: Sweave 13 | LaTeX: pdfLaTeX 14 | -------------------------------------------------------------------------------- /exercises/05_import_workflows/data/more_data/another_data_set.csv: -------------------------------------------------------------------------------- 1 | subid,stimuli,correct,age 2 | A001,A,0,2.5 3 | A001,B,0,2.5 4 | A001,C,1,2.5 5 | A001,D,0,2.5 6 | B002,A,1,2.75 7 | B002,B,1,2.75 8 | B002,C,1,2.75 9 | B002,D,1,2.75 10 | C003,A,0,3.6 11 | C003,B,0,3.6 12 | C003,C,1,3.6 13 | C003,D,1,3.6 14 | D004,A,1,4 15 | D004,B,1,4 16 | D004,C,1,4 17 | D004,D,1,4 18 | E005,A,0,2.2 19 | E005,B,0,2.2 20 | E005,C,0,2.2 21 | E005,D,0,2.2 22 | F006,A,1,4.4 23 | F006,B,0,4.4 24 | F006,C,0,4.4 25 | F006,D,1,4.4 26 | G007,A,0,4.7 27 | G007,B,1,4.7 28 | G007,C,0,4.7 29 | G007,D,0,4.7 30 | H008,A,1,3.1 31 | H008,B,1,3.1 32 | H008,C,0,3.1 33 | H008,D,1,3.1 -------------------------------------------------------------------------------- /exercises/05_import_workflows/data/pragmatic_scales_data.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/exercises/05_import_workflows/data/pragmatic_scales_data.sav -------------------------------------------------------------------------------- /exercises/05_import_workflows/project.Rproj: -------------------------------------------------------------------------------- 1 | Version: 1.0 2 | 3 | RestoreWorkspace: No 4 | SaveWorkspace: No 5 | AlwaysSaveHistory: Default 6 | 7 | EnableCodeIndexing: Yes 8 | UseSpacesForTab: Yes 9 | NumSpacesForTab: 2 10 | Encoding: UTF-8 11 | 12 | RnwWeave: Sweave 13 | LaTeX: pdfLaTeX 14 | -------------------------------------------------------------------------------- /exercises/06_ggplot2/project.Rproj: -------------------------------------------------------------------------------- 1 | Version: 1.0 2 | 3 | RestoreWorkspace: Default 4 | SaveWorkspace: Default 5 | AlwaysSaveHistory: Default 6 | 7 | EnableCodeIndexing: Yes 8 | UseSpacesForTab: Yes 9 | NumSpacesForTab: 2 10 | Encoding: UTF-8 11 | 12 | RnwWeave: Sweave 13 | LaTeX: pdfLaTeX 14 | -------------------------------------------------------------------------------- /exercises/07_dplyr/project.Rproj: -------------------------------------------------------------------------------- 1 | Version: 1.0 2 | 3 | RestoreWorkspace: Default 4 | SaveWorkspace: Default 5 | AlwaysSaveHistory: Default 6 | 7 | EnableCodeIndexing: Yes 8 | UseSpacesForTab: Yes 9 | NumSpacesForTab: 2 10 | Encoding: UTF-8 11 | 12 | RnwWeave: Sweave 13 | LaTeX: pdfLaTeX 14 | -------------------------------------------------------------------------------- /exercises/08_tidyr/project.Rproj: -------------------------------------------------------------------------------- 1 | Version: 1.0 2 | 3 | RestoreWorkspace: Default 4 | SaveWorkspace: Default 5 | AlwaysSaveHistory: Default 6 | 7 | EnableCodeIndexing: Yes 8 | UseSpacesForTab: Yes 9 | NumSpacesForTab: 2 10 | Encoding: UTF-8 11 | 12 | RnwWeave: Sweave 13 | LaTeX: pdfLaTeX 14 | -------------------------------------------------------------------------------- /index.Rmd: -------------------------------------------------------------------------------- 1 | --- 2 | site: blogdown:::blogdown_site 3 | --- 4 | -------------------------------------------------------------------------------- /layouts/partials/custom_js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/layouts/partials/custom_js.html -------------------------------------------------------------------------------- /layouts/shortcodes/blogdown/postref.html: -------------------------------------------------------------------------------- 1 | {{ .Page.Permalink }} -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- 1 | [build] 2 | publish = "public/" 3 | command = "hugo" 4 | 5 | [build.environment] 6 | HUGO_VERSION = "0.65.0" 7 | 8 | [context.production.environment] 9 | publish = "public/" 10 | HUGO_VERSION = "0.65.0" 11 | HUGO_ENV = "production" 12 | HUGO_ENABLEGITINFO = "true" 13 | 14 | [context.branch-deploy.environment] 15 | publish = "public/" 16 | HUGO_VERSION = "0.65.0" 17 | 18 | [context.deploy-preview.environment] 19 | publish = "public/" 20 | HUGO_VERSION = "0.65.0" 21 | 22 | [context.deploy-preview] 23 | publish = "public/" 24 | command = "hugo -b $DEPLOY_PRIME_URL --buildFuture" 25 | 26 | [context.branch-deploy] 27 | publish = "public/" 28 | command = "hugo -b $DEPLOY_PRIME_URL --buildFuture" 29 | -------------------------------------------------------------------------------- /resources/_gen/assets/scss/scss/main.scss_6c95cc1249b26b124274204dbf970c34.json: -------------------------------------------------------------------------------- 1 | {"Target":"css/academic.css","MediaType":"text/css","Data":{}} -------------------------------------------------------------------------------- /resources/_gen/assets/scss/scss/main.scss_76ac6956597c32fec7ddf60d408db3ab.json: -------------------------------------------------------------------------------- 1 | {"Target":"css/academic.css","MediaType":"text/css","Data":{}} -------------------------------------------------------------------------------- /resources/_gen/images/authors/admin/avatar_hu63278ac761bb20fde5cd6e9dfcf9f54c_735688_270x270_fill_q90_lanczos_center.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/resources/_gen/images/authors/admin/avatar_hu63278ac761bb20fde5cd6e9dfcf9f54c_735688_270x270_fill_q90_lanczos_center.jpg -------------------------------------------------------------------------------- /resources/_gen/images/authors/brendan/avatar_hue4061dab9af150946e172a410a9c07a4_208823_270x270_fill_q90_lanczos_center.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/resources/_gen/images/authors/brendan/avatar_hue4061dab9af150946e172a410a9c07a4_208823_270x270_fill_q90_lanczos_center.jpg -------------------------------------------------------------------------------- /resources/_gen/images/authors/cam/avatar_hu77b901a0cf0b70f4196c1c983c7b3e52_22266_270x270_fill_q90_lanczos_center.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/resources/_gen/images/authors/cam/avatar_hu77b901a0cf0b70f4196c1c983c7b3e52_22266_270x270_fill_q90_lanczos_center.jpg -------------------------------------------------------------------------------- /resources/_gen/images/authors/cianna/avatar_hu72a449cb37c215277851fa0643f39584_20203_270x270_fill_q90_lanczos_center.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/resources/_gen/images/authors/cianna/avatar_hu72a449cb37c215277851fa0643f39584_20203_270x270_fill_q90_lanczos_center.jpg -------------------------------------------------------------------------------- /resources/_gen/images/images/icon_huc79af84eacbe7cfa354c9dddd569ecf6_275274_192x192_fill_lanczos_center_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/resources/_gen/images/images/icon_huc79af84eacbe7cfa354c9dddd569ecf6_275274_192x192_fill_lanczos_center_2.png -------------------------------------------------------------------------------- /resources/_gen/images/images/icon_huc79af84eacbe7cfa354c9dddd569ecf6_275274_32x32_fill_lanczos_center_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/resources/_gen/images/images/icon_huc79af84eacbe7cfa354c9dddd569ecf6_275274_32x32_fill_lanczos_center_2.png -------------------------------------------------------------------------------- /resources/_gen/images/images/icon_huc79af84eacbe7cfa354c9dddd569ecf6_275274_512x512_fill_lanczos_center_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/resources/_gen/images/images/icon_huc79af84eacbe7cfa354c9dddd569ecf6_275274_512x512_fill_lanczos_center_2.png -------------------------------------------------------------------------------- /resources/_gen/images/post/00-welcome/featured_hu69066f6168e2706a3c28437edb8628a0_1290360_150x0_resize_q90_lanczos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/resources/_gen/images/post/00-welcome/featured_hu69066f6168e2706a3c28437edb8628a0_1290360_150x0_resize_q90_lanczos.jpg -------------------------------------------------------------------------------- /resources/_gen/images/post/00-welcome/featured_hu69066f6168e2706a3c28437edb8628a0_1290360_720x0_resize_q90_lanczos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/resources/_gen/images/post/00-welcome/featured_hu69066f6168e2706a3c28437edb8628a0_1290360_720x0_resize_q90_lanczos.jpg -------------------------------------------------------------------------------- /resources/_gen/images/post/01-r-basics/featured_hu55e3d084eb4ac83a41024085b5066bab_1407005_150x0_resize_lanczos_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/resources/_gen/images/post/01-r-basics/featured_hu55e3d084eb4ac83a41024085b5066bab_1407005_150x0_resize_lanczos_2.png -------------------------------------------------------------------------------- /resources/_gen/images/post/01-r-basics/featured_hu55e3d084eb4ac83a41024085b5066bab_1407005_720x0_resize_lanczos_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/resources/_gen/images/post/01-r-basics/featured_hu55e3d084eb4ac83a41024085b5066bab_1407005_720x0_resize_lanczos_2.png -------------------------------------------------------------------------------- /resources/_gen/images/post/02-data-types/featured_hu4f6eab14ffca34c3c3621f87d6955954_9895955_150x0_resize_lanczos_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/resources/_gen/images/post/02-data-types/featured_hu4f6eab14ffca34c3c3621f87d6955954_9895955_150x0_resize_lanczos_2.png -------------------------------------------------------------------------------- /resources/_gen/images/post/02-data-types/featured_hu4f6eab14ffca34c3c3621f87d6955954_9895955_720x0_resize_lanczos_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/resources/_gen/images/post/02-data-types/featured_hu4f6eab14ffca34c3c3621f87d6955954_9895955_720x0_resize_lanczos_2.png -------------------------------------------------------------------------------- /resources/_gen/images/post/03-functions/featured_hu69066f6168e2706a3c28437edb8628a0_1756613_150x0_resize_q90_lanczos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/resources/_gen/images/post/03-functions/featured_hu69066f6168e2706a3c28437edb8628a0_1756613_150x0_resize_q90_lanczos.jpg -------------------------------------------------------------------------------- /resources/_gen/images/post/03-functions/featured_hu69066f6168e2706a3c28437edb8628a0_1756613_720x0_resize_q90_lanczos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/resources/_gen/images/post/03-functions/featured_hu69066f6168e2706a3c28437edb8628a0_1756613_720x0_resize_q90_lanczos.jpg -------------------------------------------------------------------------------- /resources/_gen/images/post/04-intro-tidyverse/featured_hud6965efdc9d60ec5e3eae04bc0a44bfe_3037550_150x0_resize_lanczos_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/resources/_gen/images/post/04-intro-tidyverse/featured_hud6965efdc9d60ec5e3eae04bc0a44bfe_3037550_150x0_resize_lanczos_2.png -------------------------------------------------------------------------------- /resources/_gen/images/post/04-intro-tidyverse/featured_hud6965efdc9d60ec5e3eae04bc0a44bfe_3037550_720x0_resize_lanczos_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/resources/_gen/images/post/04-intro-tidyverse/featured_hud6965efdc9d60ec5e3eae04bc0a44bfe_3037550_720x0_resize_lanczos_2.png -------------------------------------------------------------------------------- /resources/_gen/images/post/05-importing-workflows/featured_huce19d7403d9d325b17fadf631c6104f6_3742192_150x0_resize_lanczos_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/resources/_gen/images/post/05-importing-workflows/featured_huce19d7403d9d325b17fadf631c6104f6_3742192_150x0_resize_lanczos_2.png -------------------------------------------------------------------------------- /resources/_gen/images/post/05-importing-workflows/featured_huce19d7403d9d325b17fadf631c6104f6_3742192_720x0_resize_lanczos_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/resources/_gen/images/post/05-importing-workflows/featured_huce19d7403d9d325b17fadf631c6104f6_3742192_720x0_resize_lanczos_2.png -------------------------------------------------------------------------------- /resources/_gen/images/post/06-ggplot2/featured_hud9c88ba00e94bd4c924fc8e3b6ef5f15_1590886_150x0_resize_lanczos_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/resources/_gen/images/post/06-ggplot2/featured_hud9c88ba00e94bd4c924fc8e3b6ef5f15_1590886_150x0_resize_lanczos_2.png -------------------------------------------------------------------------------- /resources/_gen/images/post/06-ggplot2/featured_hud9c88ba00e94bd4c924fc8e3b6ef5f15_1590886_720x0_resize_lanczos_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/resources/_gen/images/post/06-ggplot2/featured_hud9c88ba00e94bd4c924fc8e3b6ef5f15_1590886_720x0_resize_lanczos_2.png -------------------------------------------------------------------------------- /resources/_gen/images/post/07-dplyr/featured_hu063f8ca6dec3a8a82b2701532e18803e_1064382_150x0_resize_lanczos_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/resources/_gen/images/post/07-dplyr/featured_hu063f8ca6dec3a8a82b2701532e18803e_1064382_150x0_resize_lanczos_2.png -------------------------------------------------------------------------------- /resources/_gen/images/post/07-dplyr/featured_hu063f8ca6dec3a8a82b2701532e18803e_1064382_720x0_resize_lanczos_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/resources/_gen/images/post/07-dplyr/featured_hu063f8ca6dec3a8a82b2701532e18803e_1064382_720x0_resize_lanczos_2.png -------------------------------------------------------------------------------- /resources/_gen/images/post/08-tidyr/featured_hu90210d294fcb8a7eb945a386c357347b_899877_150x0_resize_lanczos_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/resources/_gen/images/post/08-tidyr/featured_hu90210d294fcb8a7eb945a386c357347b_899877_150x0_resize_lanczos_2.png -------------------------------------------------------------------------------- /resources/_gen/images/post/08-tidyr/featured_hu90210d294fcb8a7eb945a386c357347b_899877_720x0_resize_lanczos_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/resources/_gen/images/post/08-tidyr/featured_hu90210d294fcb8a7eb945a386c357347b_899877_720x0_resize_lanczos_2.png -------------------------------------------------------------------------------- /resources/_gen/images/post/09-rmarkdown/featured_hue1abb264e2aa3540d524f05917e92d66_2417446_150x0_resize_lanczos_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/resources/_gen/images/post/09-rmarkdown/featured_hue1abb264e2aa3540d524f05917e92d66_2417446_150x0_resize_lanczos_2.png -------------------------------------------------------------------------------- /resources/_gen/images/post/09-rmarkdown/featured_hue1abb264e2aa3540d524f05917e92d66_2417446_720x0_resize_lanczos_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/resources/_gen/images/post/09-rmarkdown/featured_hue1abb264e2aa3540d524f05917e92d66_2417446_720x0_resize_lanczos_2.png -------------------------------------------------------------------------------- /resources/_gen/images/prework/featured_hu8cd38a157da0414f5960b45837cffa4b_3025056_720x0_resize_q90_lanczos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/resources/_gen/images/prework/featured_hu8cd38a157da0414f5960b45837cffa4b_3025056_720x0_resize_q90_lanczos.jpg -------------------------------------------------------------------------------- /resources/_gen/images/resources/featured_hu4c38dfb5bb8db097d8791febddee99e5_2458669_720x0_resize_q90_lanczos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/resources/_gen/images/resources/featured_hu4c38dfb5bb8db097d8791febddee99e5_2458669_720x0_resize_q90_lanczos.jpg -------------------------------------------------------------------------------- /static/img/ducks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/img/ducks.jpg -------------------------------------------------------------------------------- /static/note_box_icons/Lightbulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/note_box_icons/Lightbulb.png -------------------------------------------------------------------------------- /static/note_box_icons/Live-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/note_box_icons/Live-code.png -------------------------------------------------------------------------------- /static/note_box_icons/Your-turn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/note_box_icons/Your-turn.png -------------------------------------------------------------------------------- /static/note_box_icons/alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/note_box_icons/alert.png -------------------------------------------------------------------------------- /static/note_box_icons/book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/note_box_icons/book.png -------------------------------------------------------------------------------- /static/note_box_icons/bookmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/note_box_icons/bookmark.png -------------------------------------------------------------------------------- /static/note_box_icons/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/note_box_icons/clock.png -------------------------------------------------------------------------------- /static/note_box_icons/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/note_box_icons/code.png -------------------------------------------------------------------------------- /static/note_box_icons/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/note_box_icons/download.png -------------------------------------------------------------------------------- /static/note_box_icons/fyi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/note_box_icons/fyi.png -------------------------------------------------------------------------------- /static/note_box_icons/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/note_box_icons/github.png -------------------------------------------------------------------------------- /static/note_box_icons/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/note_box_icons/link.png -------------------------------------------------------------------------------- /static/note_box_icons/people.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/note_box_icons/people.png -------------------------------------------------------------------------------- /static/note_box_icons/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/note_box_icons/profile.png -------------------------------------------------------------------------------- /static/note_box_icons/uo_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/note_box_icons/uo_logo.png -------------------------------------------------------------------------------- /static/post/2015-07-23-r-rmarkdown_files/figure-html/pie-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/post/2015-07-23-r-rmarkdown_files/figure-html/pie-1.png -------------------------------------------------------------------------------- /static/slides/00-slides_files/remark-css-0.0.1/default-fonts.css: -------------------------------------------------------------------------------- 1 | @import url(https://fonts.googleapis.com/css?family=Yanone+Kaffeesatz); 2 | @import url(https://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic); 3 | @import url(https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700); 4 | 5 | body { font-family: 'Droid Serif', 'Palatino Linotype', 'Book Antiqua', Palatino, 'Microsoft YaHei', 'Songti SC', serif; } 6 | h1, h2, h3 { 7 | font-family: 'Yanone Kaffeesatz'; 8 | font-weight: normal; 9 | } 10 | .remark-code, .remark-inline-code { font-family: 'Source Code Pro', 'Lucida Console', Monaco, monospace; } 11 | -------------------------------------------------------------------------------- /static/slides/06-ggplot_flipbook_files/figure-html/scatterplot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/06-ggplot_flipbook_files/figure-html/scatterplot-1.png -------------------------------------------------------------------------------- /static/slides/06-ggplot_flipbook_files/figure-html/scatterplot_user_01_output-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/06-ggplot_flipbook_files/figure-html/scatterplot_user_01_output-1.png -------------------------------------------------------------------------------- /static/slides/06-ggplot_flipbook_files/figure-html/scatterplot_user_02_output-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/06-ggplot_flipbook_files/figure-html/scatterplot_user_02_output-1.png -------------------------------------------------------------------------------- /static/slides/06-ggplot_flipbook_files/figure-html/scatterplot_user_03_output-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/06-ggplot_flipbook_files/figure-html/scatterplot_user_03_output-1.png -------------------------------------------------------------------------------- /static/slides/06-ggplot_flipbook_files/figure-html/scatterplot_user_04_output-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/06-ggplot_flipbook_files/figure-html/scatterplot_user_04_output-1.png -------------------------------------------------------------------------------- /static/slides/06-ggplot_flipbook_files/figure-html/scatterplot_user_05_output-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/06-ggplot_flipbook_files/figure-html/scatterplot_user_05_output-1.png -------------------------------------------------------------------------------- /static/slides/06-ggplot_flipbook_files/figure-html/scatterplot_user_06_output-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/06-ggplot_flipbook_files/figure-html/scatterplot_user_06_output-1.png -------------------------------------------------------------------------------- /static/slides/06-ggplot_flipbook_files/figure-html/scatterplot_user_07_output-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/06-ggplot_flipbook_files/figure-html/scatterplot_user_07_output-1.png -------------------------------------------------------------------------------- /static/slides/06-ggplot_flipbook_files/figure-html/scatterplot_user_08_output-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/06-ggplot_flipbook_files/figure-html/scatterplot_user_08_output-1.png -------------------------------------------------------------------------------- /static/slides/06-ggplot_flipbook_files/figure-html/scatterplot_user_09_output-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/06-ggplot_flipbook_files/figure-html/scatterplot_user_09_output-1.png -------------------------------------------------------------------------------- /static/slides/06-ggplot_flipbook_files/figure-html/scatterplot_user_10_output-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/06-ggplot_flipbook_files/figure-html/scatterplot_user_10_output-1.png -------------------------------------------------------------------------------- /static/slides/06-ggplot_flipbook_files/figure-html/scatterplot_user_11_output-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/06-ggplot_flipbook_files/figure-html/scatterplot_user_11_output-1.png -------------------------------------------------------------------------------- /static/slides/06-ggplot_flipbook_files/figure-html/scatterplot_user_12_output-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/06-ggplot_flipbook_files/figure-html/scatterplot_user_12_output-1.png -------------------------------------------------------------------------------- /static/slides/06-ggplot_flipbook_files/figure-html/scatterplot_user_13_output-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/06-ggplot_flipbook_files/figure-html/scatterplot_user_13_output-1.png -------------------------------------------------------------------------------- /static/slides/06-ggplot_flipbook_files/figure-html/scatterplot_user_14_output-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/06-ggplot_flipbook_files/figure-html/scatterplot_user_14_output-1.png -------------------------------------------------------------------------------- /static/slides/06-ggplot_flipbook_files/figure-html/scatterplot_user_15_output-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/06-ggplot_flipbook_files/figure-html/scatterplot_user_15_output-1.png -------------------------------------------------------------------------------- /static/slides/06-ggplot_flipbook_files/figure-html/scatterplot_user_16_output-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/06-ggplot_flipbook_files/figure-html/scatterplot_user_16_output-1.png -------------------------------------------------------------------------------- /static/slides/06-ggplot_flipbook_files/figure-html/scatterplot_user_17_output-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/06-ggplot_flipbook_files/figure-html/scatterplot_user_17_output-1.png -------------------------------------------------------------------------------- /static/slides/06-ggplot_flipbook_files/figure-html/scatterplot_user_18_output-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/06-ggplot_flipbook_files/figure-html/scatterplot_user_18_output-1.png -------------------------------------------------------------------------------- /static/slides/06-ggplot_flipbook_files/figure-html/scatterplot_user_19_output-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/06-ggplot_flipbook_files/figure-html/scatterplot_user_19_output-1.png -------------------------------------------------------------------------------- /static/slides/06-ggplot_flipbook_files/figure-html/scatterplot_user_20_output-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/06-ggplot_flipbook_files/figure-html/scatterplot_user_20_output-1.png -------------------------------------------------------------------------------- /static/slides/06-slides_files/figure-html/penguins-hist-basic-out-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/06-slides_files/figure-html/penguins-hist-basic-out-1.png -------------------------------------------------------------------------------- /static/slides/06-slides_files/figure-html/penguins-hist-bins-out-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/06-slides_files/figure-html/penguins-hist-bins-out-1.png -------------------------------------------------------------------------------- /static/slides/06-slides_files/figure-html/penguins-hist-fill-out-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/06-slides_files/figure-html/penguins-hist-fill-out-1.png -------------------------------------------------------------------------------- /static/slides/06-slides_files/figure-html/penguins-point-color-out-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/06-slides_files/figure-html/penguins-point-color-out-1.png -------------------------------------------------------------------------------- /static/slides/06-slides_files/figure-html/penguins-point-error-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/06-slides_files/figure-html/penguins-point-error-1.png -------------------------------------------------------------------------------- /static/slides/06-slides_files/figure-html/penguins-point-error-out-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/06-slides_files/figure-html/penguins-point-error-out-1.png -------------------------------------------------------------------------------- /static/slides/06-slides_files/figure-html/penguins-point-facet-out-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/06-slides_files/figure-html/penguins-point-facet-out-1.png -------------------------------------------------------------------------------- /static/slides/06-slides_files/figure-html/penguins-point-fixed-out-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/06-slides_files/figure-html/penguins-point-fixed-out-1.png -------------------------------------------------------------------------------- /static/slides/06-slides_files/figure-html/penguins-point-red-out-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/06-slides_files/figure-html/penguins-point-red-out-1.png -------------------------------------------------------------------------------- /static/slides/06-slides_files/figure-html/penguins-smooth-out-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/06-slides_files/figure-html/penguins-smooth-out-1.png -------------------------------------------------------------------------------- /static/slides/06-slides_files/figure-html/penguins-yt-q1-out-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/06-slides_files/figure-html/penguins-yt-q1-out-1.png -------------------------------------------------------------------------------- /static/slides/06-slides_files/figure-html/penguins-yt-q2-out-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/06-slides_files/figure-html/penguins-yt-q2-out-1.png -------------------------------------------------------------------------------- /static/slides/06-slides_files/figure-html/plot-1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/06-slides_files/figure-html/plot-1-1.png -------------------------------------------------------------------------------- /static/slides/06-slides_files/figure-html/plot-1-out-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/06-slides_files/figure-html/plot-1-out-1.png -------------------------------------------------------------------------------- /static/slides/06-slides_files/figure-html/point-smooth-global-out-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/06-slides_files/figure-html/point-smooth-global-out-1.png -------------------------------------------------------------------------------- /static/slides/06-slides_files/figure-html/point-smooth-lm-out-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/06-slides_files/figure-html/point-smooth-lm-out-1.png -------------------------------------------------------------------------------- /static/slides/06-slides_files/figure-html/smooth-color-global-out-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/06-slides_files/figure-html/smooth-color-global-out-1.png -------------------------------------------------------------------------------- /static/slides/06-slides_files/figure-html/smooth-color-global-override-out-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/06-slides_files/figure-html/smooth-color-global-override-out-1.png -------------------------------------------------------------------------------- /static/slides/06-slides_files/figure-html/unnamed-chunk-10-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/06-slides_files/figure-html/unnamed-chunk-10-1.png -------------------------------------------------------------------------------- /static/slides/06-slides_files/figure-html/unnamed-chunk-11-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/06-slides_files/figure-html/unnamed-chunk-11-1.png -------------------------------------------------------------------------------- /static/slides/06-slides_files/figure-html/unnamed-chunk-12-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/06-slides_files/figure-html/unnamed-chunk-12-1.png -------------------------------------------------------------------------------- /static/slides/06-slides_files/figure-html/unnamed-chunk-13-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/06-slides_files/figure-html/unnamed-chunk-13-1.png -------------------------------------------------------------------------------- /static/slides/06-slides_files/figure-html/unnamed-chunk-15-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/06-slides_files/figure-html/unnamed-chunk-15-1.png -------------------------------------------------------------------------------- /static/slides/06-slides_files/figure-html/unnamed-chunk-16-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/06-slides_files/figure-html/unnamed-chunk-16-1.png -------------------------------------------------------------------------------- /static/slides/06-slides_files/figure-html/unnamed-chunk-17-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/06-slides_files/figure-html/unnamed-chunk-17-1.png -------------------------------------------------------------------------------- /static/slides/06-slides_files/figure-html/unnamed-chunk-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/06-slides_files/figure-html/unnamed-chunk-3-1.png -------------------------------------------------------------------------------- /static/slides/07-slides_files/figure-html/unnamed-chunk-50-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/07-slides_files/figure-html/unnamed-chunk-50-1.png -------------------------------------------------------------------------------- /static/slides/07-slides_files/figure-html/unnamed-chunk-51-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/07-slides_files/figure-html/unnamed-chunk-51-1.png -------------------------------------------------------------------------------- /static/slides/07-slides_files/figure-html/unnamed-chunk-53-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/07-slides_files/figure-html/unnamed-chunk-53-1.png -------------------------------------------------------------------------------- /static/slides/09-what-is-rmd.Rmd: -------------------------------------------------------------------------------- 1 | --- 2 | output: html_document 3 | --- 4 | 5 | # What is R Markdown? 6 | 7 | 8 | 1. An authoring framework for data science. 9 | 10 | 1. A document format (`.Rmd`). 11 | 12 | 1. An R package named `rmarkdown`. 13 | 14 | 1. A file format for making dynamic documents with R. 15 | 16 | 1. A tool for integrating prose, code, and results. 17 | 18 | 1. A computational document. 19 | 20 | 1. Wizardry. 21 | -------------------------------------------------------------------------------- /static/slides/data/another_data_set.csv: -------------------------------------------------------------------------------- 1 | subid,stimuli,correct,age 2 | A001,A,0,2.5 3 | A001,B,0,2.5 4 | A001,C,1,2.5 5 | A001,D,0,2.5 6 | B002,A,1,2.75 7 | B002,B,1,2.75 8 | B002,C,1,2.75 9 | B002,D,1,2.75 10 | C003,A,0,3.6 11 | C003,B,0,3.6 12 | C003,C,1,3.6 13 | C003,D,1,3.6 14 | D004,A,1,4 15 | D004,B,1,4 16 | D004,C,1,4 17 | D004,D,1,4 18 | E005,A,0,2.2 19 | E005,B,0,2.2 20 | E005,C,0,2.2 21 | E005,D,0,2.2 22 | F006,A,1,4.4 23 | F006,B,0,4.4 24 | F006,C,0,4.4 25 | F006,D,1,4.4 26 | G007,A,0,4.7 27 | G007,B,1,4.7 28 | G007,C,0,4.7 29 | G007,D,0,4.7 30 | H008,A,1,3.1 31 | H008,B,1,3.1 32 | H008,C,0,3.1 33 | H008,D,1,3.1 -------------------------------------------------------------------------------- /static/slides/data/pragmatic_scales_data.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/data/pragmatic_scales_data.sav -------------------------------------------------------------------------------- /static/slides/images/breakr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/breakr.gif -------------------------------------------------------------------------------- /static/slides/images/brendan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/brendan.png -------------------------------------------------------------------------------- /static/slides/images/cam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/cam.png -------------------------------------------------------------------------------- /static/slides/images/cianna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/cianna.png -------------------------------------------------------------------------------- /static/slides/images/coding_cases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/coding_cases.png -------------------------------------------------------------------------------- /static/slides/images/create_project1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/create_project1.png -------------------------------------------------------------------------------- /static/slides/images/create_project2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/create_project2.png -------------------------------------------------------------------------------- /static/slides/images/create_project3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/create_project3.png -------------------------------------------------------------------------------- /static/slides/images/culmen_depth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/culmen_depth.png -------------------------------------------------------------------------------- /static/slides/images/data-types.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/data-types.png -------------------------------------------------------------------------------- /static/slides/images/data_science_workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/data_science_workflow.png -------------------------------------------------------------------------------- /static/slides/images/debugging.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/debugging.jpg -------------------------------------------------------------------------------- /static/slides/images/dplyr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/dplyr.png -------------------------------------------------------------------------------- /static/slides/images/dplyr/arrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/dplyr/arrange.png -------------------------------------------------------------------------------- /static/slides/images/dplyr/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/dplyr/filter.png -------------------------------------------------------------------------------- /static/slides/images/dplyr/group_by.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/dplyr/group_by.png -------------------------------------------------------------------------------- /static/slides/images/dplyr/group_by_summarize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/dplyr/group_by_summarize.png -------------------------------------------------------------------------------- /static/slides/images/dplyr/logical_operators.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/dplyr/logical_operators.png -------------------------------------------------------------------------------- /static/slides/images/dplyr/mutate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/dplyr/mutate.png -------------------------------------------------------------------------------- /static/slides/images/dplyr/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/dplyr/select.png -------------------------------------------------------------------------------- /static/slides/images/dplyr/summarize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/dplyr/summarize.png -------------------------------------------------------------------------------- /static/slides/images/dplyr/summary_function.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/dplyr/summary_function.png -------------------------------------------------------------------------------- /static/slides/images/dplyr_filter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/dplyr_filter.jpg -------------------------------------------------------------------------------- /static/slides/images/dplyr_mutate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/dplyr_mutate.png -------------------------------------------------------------------------------- /static/slides/images/engine_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/engine_dashboard.png -------------------------------------------------------------------------------- /static/slides/images/error.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/error.jpg -------------------------------------------------------------------------------- /static/slides/images/example_rproj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/example_rproj.png -------------------------------------------------------------------------------- /static/slides/images/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/filter.png -------------------------------------------------------------------------------- /static/slides/images/ggplot_ex_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/ggplot_ex_1.png -------------------------------------------------------------------------------- /static/slides/images/ggplot_ex_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/ggplot_ex_2.jpg -------------------------------------------------------------------------------- /static/slides/images/ggplot_ex_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/ggplot_ex_3.png -------------------------------------------------------------------------------- /static/slides/images/ggplot_ex_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/ggplot_ex_4.png -------------------------------------------------------------------------------- /static/slides/images/group_by-summarize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/group_by-summarize.png -------------------------------------------------------------------------------- /static/slides/images/hadley.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/hadley.jpg -------------------------------------------------------------------------------- /static/slides/images/heartyr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/heartyr.gif -------------------------------------------------------------------------------- /static/slides/images/help_page_annotated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/help_page_annotated.png -------------------------------------------------------------------------------- /static/slides/images/here.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/here.png -------------------------------------------------------------------------------- /static/slides/images/hex/dplyr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/hex/dplyr.png -------------------------------------------------------------------------------- /static/slides/images/hex/forcats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/hex/forcats.png -------------------------------------------------------------------------------- /static/slides/images/hex/ggplot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/hex/ggplot2.png -------------------------------------------------------------------------------- /static/slides/images/hex/magrittr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/hex/magrittr.png -------------------------------------------------------------------------------- /static/slides/images/hex/palmerpenguins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/hex/palmerpenguins.png -------------------------------------------------------------------------------- /static/slides/images/hex/purrr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/hex/purrr.png -------------------------------------------------------------------------------- /static/slides/images/hex/readr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/hex/readr.png -------------------------------------------------------------------------------- /static/slides/images/hex/rio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/hex/rio.png -------------------------------------------------------------------------------- /static/slides/images/hex/stringr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/hex/stringr.png -------------------------------------------------------------------------------- /static/slides/images/hex/tibble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/hex/tibble.png -------------------------------------------------------------------------------- /static/slides/images/hex/tidyr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/hex/tidyr.png -------------------------------------------------------------------------------- /static/slides/images/hex/tidyverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/hex/tidyverse.png -------------------------------------------------------------------------------- /static/slides/images/mutate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/mutate.png -------------------------------------------------------------------------------- /static/slides/images/package_yt_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/package_yt_1.png -------------------------------------------------------------------------------- /static/slides/images/package_yt_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/package_yt_2.png -------------------------------------------------------------------------------- /static/slides/images/package_yt_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/package_yt_3.png -------------------------------------------------------------------------------- /static/slides/images/package_yt_4_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/package_yt_4_1.png -------------------------------------------------------------------------------- /static/slides/images/package_yt_4_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/package_yt_4_2.png -------------------------------------------------------------------------------- /static/slides/images/package_yt_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/package_yt_5.png -------------------------------------------------------------------------------- /static/slides/images/penguins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/penguins.png -------------------------------------------------------------------------------- /static/slides/images/penguins_hist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/penguins_hist.png -------------------------------------------------------------------------------- /static/slides/images/pipe-operator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/pipe-operator.png -------------------------------------------------------------------------------- /static/slides/images/pivot_longer_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/pivot_longer_example.png -------------------------------------------------------------------------------- /static/slides/images/pivot_wider_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/pivot_wider_example.png -------------------------------------------------------------------------------- /static/slides/images/ps_data_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/ps_data_plot.png -------------------------------------------------------------------------------- /static/slides/images/r4ds-cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/r4ds-cover.png -------------------------------------------------------------------------------- /static/slides/images/r_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/r_logo.png -------------------------------------------------------------------------------- /static/slides/images/rainbowr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/rainbowr.gif -------------------------------------------------------------------------------- /static/slides/images/rmarkdown/Knit-to-html.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/rmarkdown/Knit-to-html.jpg -------------------------------------------------------------------------------- /static/slides/images/rmarkdown/doc-live.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/rmarkdown/doc-live.jpg -------------------------------------------------------------------------------- /static/slides/images/rmarkdown/doc-make.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/rmarkdown/doc-make.jpg -------------------------------------------------------------------------------- /static/slides/images/rmarkdown_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/rmarkdown_example.png -------------------------------------------------------------------------------- /static/slides/images/rmarkdown_example_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/rmarkdown_example_title.png -------------------------------------------------------------------------------- /static/slides/images/rmarkdown_example_title_yaml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/rmarkdown_example_title_yaml.png -------------------------------------------------------------------------------- /static/slides/images/rmarkdown_wizards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/rmarkdown_wizards.png -------------------------------------------------------------------------------- /static/slides/images/rmd_annotated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/rmd_annotated.png -------------------------------------------------------------------------------- /static/slides/images/rstudio_blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/rstudio_blank.png -------------------------------------------------------------------------------- /static/slides/images/rstudio_cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/rstudio_cloud.png -------------------------------------------------------------------------------- /static/slides/images/rstudio_console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/rstudio_console.png -------------------------------------------------------------------------------- /static/slides/images/rstudio_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/rstudio_editor.png -------------------------------------------------------------------------------- /static/slides/images/rstudio_environment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/rstudio_environment.png -------------------------------------------------------------------------------- /static/slides/images/rstudio_labelled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/rstudio_labelled.png -------------------------------------------------------------------------------- /static/slides/images/rstudio_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/rstudio_logo.png -------------------------------------------------------------------------------- /static/slides/images/rstudio_plots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/rstudio_plots.png -------------------------------------------------------------------------------- /static/slides/images/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/select.png -------------------------------------------------------------------------------- /static/slides/images/stormyr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/stormyr.gif -------------------------------------------------------------------------------- /static/slides/images/tidy_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/tidy_data.png -------------------------------------------------------------------------------- /static/slides/images/tidyr-longer-wider-modified.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/tidyr-longer-wider-modified.gif -------------------------------------------------------------------------------- /static/slides/images/tidyverse_package_load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/tidyverse_package_load.png -------------------------------------------------------------------------------- /static/slides/images/tidyverse_packages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/tidyverse_packages.png -------------------------------------------------------------------------------- /static/slides/images/tidyverse_packages_purpose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/tidyverse_packages_purpose.png -------------------------------------------------------------------------------- /static/slides/images/vector_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/images/vector_example.png -------------------------------------------------------------------------------- /static/slides/libs/countdown/smb_stage_clear.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/libs/countdown/smb_stage_clear.mp3 -------------------------------------------------------------------------------- /static/slides/libs/font-awesome/less/_animated.less: -------------------------------------------------------------------------------- 1 | // Animated Icons 2 | // -------------------------- 3 | 4 | .@{fa-css-prefix}-spin { 5 | animation: fa-spin 2s infinite linear; 6 | } 7 | 8 | .@{fa-css-prefix}-pulse { 9 | animation: fa-spin 1s infinite steps(8); 10 | } 11 | 12 | @keyframes fa-spin { 13 | 0% { 14 | transform: rotate(0deg); 15 | } 16 | 100% { 17 | transform: rotate(360deg); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /static/slides/libs/font-awesome/less/_bordered-pulled.less: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-border { 5 | border-radius: .1em; 6 | border: solid .08em @fa-border-color; 7 | padding: .2em .25em .15em; 8 | } 9 | 10 | .@{fa-css-prefix}-pull-left { float: left; } 11 | .@{fa-css-prefix}-pull-right { float: right; } 12 | 13 | .@{fa-css-prefix}, .fas, .far, .fal, .fab { 14 | &.@{fa-css-prefix}-pull-left { margin-right: .3em; } 15 | &.@{fa-css-prefix}-pull-right { margin-left: .3em; } 16 | } 17 | -------------------------------------------------------------------------------- /static/slides/libs/font-awesome/less/_core.less: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}, .fas, .far, .fal, .fab { 5 | -moz-osx-font-smoothing: grayscale; 6 | -webkit-font-smoothing: antialiased; 7 | display: inline-block; 8 | font-style: normal; 9 | font-variant: normal; 10 | text-rendering: auto; 11 | line-height: 1; 12 | } 13 | -------------------------------------------------------------------------------- /static/slides/libs/font-awesome/less/_fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | text-align: center; 5 | width: (20em / 16); 6 | } 7 | -------------------------------------------------------------------------------- /static/slides/libs/font-awesome/less/_larger.less: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | .larger(@factor) when (@factor > 0) { 5 | .larger((@factor - 1)); 6 | 7 | .@{fa-css-prefix}-@{factor}x { 8 | font-size: (@factor * 1em); 9 | } 10 | } 11 | 12 | /* makes the font 33% larger relative to the icon container */ 13 | .@{fa-css-prefix}-lg { 14 | font-size: (4em / 3); 15 | line-height: (3em / 4); 16 | vertical-align: -.0667em; 17 | } 18 | 19 | .@{fa-css-prefix}-xs { 20 | font-size: .75em; 21 | } 22 | 23 | .@{fa-css-prefix}-sm { 24 | font-size: .875em; 25 | } 26 | 27 | .larger(10); 28 | -------------------------------------------------------------------------------- /static/slides/libs/font-awesome/less/_list.less: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-ul { 5 | list-style-type: none; 6 | margin-left: @fa-li-width * 5/4; 7 | padding-left: 0; 8 | 9 | > li { position: relative; } 10 | } 11 | 12 | .@{fa-css-prefix}-li { 13 | left: -@fa-li-width; 14 | position: absolute; 15 | text-align: center; 16 | width: @fa-li-width; 17 | line-height: inherit; 18 | } 19 | -------------------------------------------------------------------------------- /static/slides/libs/font-awesome/less/_rotated-flipped.less: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); } 5 | .@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); } 6 | .@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); } 7 | 8 | .@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); } 9 | .@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); } 10 | .@{fa-css-prefix}-flip-horizontal.@{fa-css-prefix}-flip-vertical { .fa-icon-flip(-1, -1, 2); } 11 | 12 | // Hook for IE8-9 13 | // ------------------------- 14 | 15 | :root { 16 | .@{fa-css-prefix}-rotate-90, 17 | .@{fa-css-prefix}-rotate-180, 18 | .@{fa-css-prefix}-rotate-270, 19 | .@{fa-css-prefix}-flip-horizontal, 20 | .@{fa-css-prefix}-flip-vertical { 21 | filter: none; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /static/slides/libs/font-awesome/less/_screen-reader.less: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { .sr-only(); } 5 | .sr-only-focusable { .sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /static/slides/libs/font-awesome/less/_stacked.less: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-stack { 5 | display: inline-block; 6 | height: 2em; 7 | line-height: 2em; 8 | position: relative; 9 | vertical-align: middle; 10 | width: 2em; 11 | } 12 | 13 | .@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x { 14 | left: 0; 15 | position: absolute; 16 | text-align: center; 17 | width: 100%; 18 | } 19 | 20 | .@{fa-css-prefix}-stack-1x { line-height: inherit; } 21 | .@{fa-css-prefix}-stack-2x { font-size: 2em; } 22 | .@{fa-css-prefix}-inverse { color: @fa-inverse; } 23 | -------------------------------------------------------------------------------- /static/slides/libs/font-awesome/less/brands.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 5.3.1 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | */ 5 | @import "_variables.less"; 6 | 7 | @font-face { 8 | font-family: 'Font Awesome 5 Brands'; 9 | font-style: normal; 10 | font-weight: normal; 11 | src: url('@{fa-font-path}/fa-brands-400.eot'); 12 | src: url('@{fa-font-path}/fa-brands-400.eot?#iefix') format('embedded-opentype'), 13 | url('@{fa-font-path}/fa-brands-400.woff2') format('woff2'), 14 | url('@{fa-font-path}/fa-brands-400.woff') format('woff'), 15 | url('@{fa-font-path}/fa-brands-400.ttf') format('truetype'), 16 | url('@{fa-font-path}/fa-brands-400.svg#fontawesome') format('svg'); 17 | } 18 | 19 | .fab { 20 | font-family: 'Font Awesome 5 Brands'; 21 | } 22 | -------------------------------------------------------------------------------- /static/slides/libs/font-awesome/less/fontawesome.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 5.3.1 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | */ 5 | @import "_variables.less"; 6 | @import "_mixins.less"; 7 | @import "_core.less"; 8 | @import "_larger.less"; 9 | @import "_fixed-width.less"; 10 | @import "_list.less"; 11 | @import "_bordered-pulled.less"; 12 | @import "_animated.less"; 13 | @import "_rotated-flipped.less"; 14 | @import "_stacked.less"; 15 | @import "_icons.less"; 16 | @import "_screen-reader.less"; 17 | -------------------------------------------------------------------------------- /static/slides/libs/font-awesome/less/v4-shims.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 5.3.1 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | */ 5 | @import '_variables.less'; 6 | @import '_shims.less'; 7 | -------------------------------------------------------------------------------- /static/slides/libs/font-awesome/scss/_animated.scss: -------------------------------------------------------------------------------- 1 | // Animated Icons 2 | // -------------------------- 3 | 4 | .#{$fa-css-prefix}-spin { 5 | animation: fa-spin 2s infinite linear; 6 | } 7 | 8 | .#{$fa-css-prefix}-pulse { 9 | animation: fa-spin 1s infinite steps(8); 10 | } 11 | 12 | @keyframes fa-spin { 13 | 0% { 14 | transform: rotate(0deg); 15 | } 16 | 17 | 100% { 18 | transform: rotate(360deg); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /static/slides/libs/font-awesome/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-border { 5 | border: solid .08em $fa-border-color; 6 | border-radius: .1em; 7 | padding: .2em .25em .15em; 8 | } 9 | 10 | .#{$fa-css-prefix}-pull-left { float: left; } 11 | .#{$fa-css-prefix}-pull-right { float: right; } 12 | 13 | .#{$fa-css-prefix}, 14 | .fas, 15 | .far, 16 | .fal, 17 | .fab { 18 | &.#{$fa-css-prefix}-pull-left { margin-right: .3em; } 19 | &.#{$fa-css-prefix}-pull-right { margin-left: .3em; } 20 | } 21 | -------------------------------------------------------------------------------- /static/slides/libs/font-awesome/scss/_core.scss: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}, 5 | .fas, 6 | .far, 7 | .fal, 8 | .fab { 9 | -moz-osx-font-smoothing: grayscale; 10 | -webkit-font-smoothing: antialiased; 11 | display: inline-block; 12 | font-style: normal; 13 | font-variant: normal; 14 | text-rendering: auto; 15 | line-height: 1; 16 | } 17 | 18 | %fa-icon { 19 | @include fa-icon; 20 | } 21 | -------------------------------------------------------------------------------- /static/slides/libs/font-awesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | text-align: center; 5 | width: (20em / 16); 6 | } 7 | -------------------------------------------------------------------------------- /static/slides/libs/font-awesome/scss/_larger.scss: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | // makes the font 33% larger relative to the icon container 5 | .#{$fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -.0667em; 9 | } 10 | 11 | .#{$fa-css-prefix}-xs { 12 | font-size: .75em; 13 | } 14 | 15 | .#{$fa-css-prefix}-sm { 16 | font-size: .875em; 17 | } 18 | 19 | @for $i from 1 through 10 { 20 | .#{$fa-css-prefix}-#{$i}x { 21 | font-size: $i * 1em; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /static/slides/libs/font-awesome/scss/_list.scss: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-ul { 5 | list-style-type: none; 6 | margin-left: $fa-li-width * 5/4; 7 | padding-left: 0; 8 | 9 | > li { position: relative; } 10 | } 11 | 12 | .#{$fa-css-prefix}-li { 13 | left: -$fa-li-width; 14 | position: absolute; 15 | text-align: center; 16 | width: $fa-li-width; 17 | line-height: inherit; 18 | } 19 | -------------------------------------------------------------------------------- /static/slides/libs/font-awesome/scss/_screen-reader.scss: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { @include sr-only; } 5 | .sr-only-focusable { @include sr-only-focusable; } 6 | -------------------------------------------------------------------------------- /static/slides/libs/font-awesome/scss/_stacked.scss: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-stack { 5 | display: inline-block; 6 | height: 2em; 7 | line-height: 2em; 8 | position: relative; 9 | vertical-align: middle; 10 | width: 2em; 11 | } 12 | 13 | .#{$fa-css-prefix}-stack-1x, 14 | .#{$fa-css-prefix}-stack-2x { 15 | left: 0; 16 | position: absolute; 17 | text-align: center; 18 | width: 100%; 19 | } 20 | 21 | .#{$fa-css-prefix}-stack-1x { 22 | line-height: inherit; 23 | } 24 | 25 | .#{$fa-css-prefix}-stack-2x { 26 | font-size: 2em; 27 | } 28 | 29 | .#{$fa-css-prefix}-inverse { 30 | color: $fa-inverse; 31 | } 32 | -------------------------------------------------------------------------------- /static/slides/libs/font-awesome/scss/brands.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 5.3.1 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | */ 5 | @import 'variables'; 6 | 7 | @font-face { 8 | font-family: 'Font Awesome 5 Brands'; 9 | font-style: normal; 10 | font-weight: normal; 11 | src: url('#{$fa-font-path}/fa-brands-400.eot'); 12 | src: url('#{$fa-font-path}/fa-brands-400.eot?#iefix') format('embedded-opentype'), 13 | url('#{$fa-font-path}/fa-brands-400.woff2') format('woff2'), 14 | url('#{$fa-font-path}/fa-brands-400.woff') format('woff'), 15 | url('#{$fa-font-path}/fa-brands-400.ttf') format('truetype'), 16 | url('#{$fa-font-path}/fa-brands-400.svg#fontawesome') format('svg'); 17 | } 18 | 19 | .fab { 20 | font-family: 'Font Awesome 5 Brands'; 21 | } 22 | -------------------------------------------------------------------------------- /static/slides/libs/font-awesome/scss/fontawesome.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 5.3.1 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | */ 5 | @import 'variables'; 6 | @import 'mixins'; 7 | @import 'core'; 8 | @import 'larger'; 9 | @import 'fixed-width'; 10 | @import 'list'; 11 | @import 'bordered-pulled'; 12 | @import 'animated'; 13 | @import 'rotated-flipped'; 14 | @import 'stacked'; 15 | @import 'icons'; 16 | @import 'screen-reader'; 17 | -------------------------------------------------------------------------------- /static/slides/libs/font-awesome/scss/solid.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 5.3.1 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | */ 5 | @import 'variables'; 6 | 7 | @font-face { 8 | font-family: 'Font Awesome 5 Free'; 9 | font-style: normal; 10 | font-weight: 900; 11 | src: url('#{$fa-font-path}/fa-solid-900.eot'); 12 | src: url('#{$fa-font-path}/fa-solid-900.eot?#iefix') format('embedded-opentype'), 13 | url('#{$fa-font-path}/fa-solid-900.woff2') format('woff2'), 14 | url('#{$fa-font-path}/fa-solid-900.woff') format('woff'), 15 | url('#{$fa-font-path}/fa-solid-900.ttf') format('truetype'), 16 | url('#{$fa-font-path}/fa-solid-900.svg#fontawesome') format('svg'); 17 | } 18 | 19 | .fa, 20 | .fas { 21 | font-family: 'Font Awesome 5 Free'; 22 | font-weight: 900; 23 | } 24 | -------------------------------------------------------------------------------- /static/slides/libs/font-awesome/scss/v4-shims.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 5.3.1 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | */ 5 | @import 'variables'; 6 | @import 'shims'; 7 | -------------------------------------------------------------------------------- /static/slides/libs/font-awesome/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/libs/font-awesome/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /static/slides/libs/font-awesome/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/libs/font-awesome/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /static/slides/libs/font-awesome/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/libs/font-awesome/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /static/slides/libs/font-awesome/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/libs/font-awesome/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /static/slides/libs/font-awesome/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/libs/font-awesome/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /static/slides/libs/font-awesome/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/libs/font-awesome/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /static/slides/libs/font-awesome/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/libs/font-awesome/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /static/slides/libs/font-awesome/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/libs/font-awesome/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /static/slides/libs/font-awesome/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/libs/font-awesome/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /static/slides/libs/font-awesome/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/libs/font-awesome/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /static/slides/libs/font-awesome/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/libs/font-awesome/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /static/slides/libs/font-awesome/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/static/slides/libs/font-awesome/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /static/slides/libs/header-attrs/header-attrs.js: -------------------------------------------------------------------------------- 1 | // Pandoc 2.9 adds attributes on both header and div. We remove the former (to 2 | // be compatible with the behavior of Pandoc < 2.8). 3 | document.addEventListener('DOMContentLoaded', function(e) { 4 | var hs = document.querySelectorAll("div.section[class*='level'] > :first-child"); 5 | var i, h, a; 6 | for (i = 0; i < hs.length; i++) { 7 | h = hs[i]; 8 | if (!/^h[1-6]$/i.test(h.tagName)) continue; // it should be a header h1-h6 9 | a = h.attributes; 10 | while (a.length > 0) h.removeAttribute(a[0].name); 11 | } 12 | }); 13 | -------------------------------------------------------------------------------- /static/slides/libs/xaringanExtra-extra-styles/xaringanExtra-extra-styles.css: -------------------------------------------------------------------------------- 1 | /* Line Hover Indicator */ 2 | .remark-code-line:hover { 3 | font-weight: bold; 4 | opacity: 1 !important; 5 | } 6 | 7 | .remark-code-line:hover:before { 8 | content: "\25B6"; 9 | color: #6d7e8a; 10 | position: absolute; 11 | transform: translateX(-1.2em); 12 | animation: hover 0.66s alternate 8 cubic-bezier(0.445, 0.05, 0.55, 0.95); 13 | } 14 | 15 | @keyframes hover { 16 | 0% { 17 | transform: translateX(-1.2em); 18 | } 19 | 100% { 20 | transform: translateX(-0.8em); 21 | } 22 | } 23 | /* Mute highlighted line */ 24 | .remark-code-has-line-highlighted .remark-code-line:not(.remark-code-line-highlighted) { 25 | opacity: 0.4; 26 | } 27 | 28 | /* Override highlight color */ 29 | .remark-code-line-highlighted { 30 | background-color: inherit; 31 | } 32 | -------------------------------------------------------------------------------- /summeR-bootcamp-2020.Rproj: -------------------------------------------------------------------------------- 1 | Version: 1.0 2 | 3 | RestoreWorkspace: Default 4 | SaveWorkspace: Default 5 | AlwaysSaveHistory: Default 6 | 7 | EnableCodeIndexing: Yes 8 | UseSpacesForTab: Yes 9 | NumSpacesForTab: 2 10 | Encoding: UTF-8 11 | 12 | RnwWeave: Sweave 13 | LaTeX: XeLaTeX 14 | 15 | AutoAppendNewline: Yes 16 | 17 | BuildType: Website 18 | -------------------------------------------------------------------------------- /themes/hugo-academic/.editorconfig: -------------------------------------------------------------------------------- 1 | # editorconfig.org 2 | 3 | root = true 4 | 5 | [*] 6 | charset = utf-8 7 | end_of_line = lf 8 | indent_size = 2 9 | indent_style = space 10 | insert_final_newline = true 11 | trim_trailing_whitespace = true 12 | 13 | [*.toml] 14 | max_line_length = 100 15 | 16 | [*.md] 17 | trim_trailing_whitespace = false 18 | 19 | [{layouts/shortcodes/*.html, layouts/_default/_markup/*.html}] 20 | insert_final_newline = false 21 | -------------------------------------------------------------------------------- /themes/hugo-academic/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] 4 | patreon: cushen 5 | open_collective: # Replace with a single Open Collective username 6 | ko_fi: # Replace with a single Ko-fi username 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: # Replace with a single Liberapay username 10 | issuehunt: # Replace with a single IssueHunt username 11 | otechie: # Replace with a single Otechie username 12 | custom: https://paypal.me/cushen 13 | -------------------------------------------------------------------------------- /themes/hugo-academic/.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "\U0001F680 Feature request" 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | ## Feature Request 11 | 12 | **Is your feature request related to a problem? Please describe.** 13 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 14 | 15 | **Describe the solution you'd like** 16 | A clear and concise description of what you want to happen. 17 | 18 | **Describe alternatives you've considered** 19 | A clear and concise description of any alternative solutions or features you've considered. 20 | 21 | **Additional context** 22 | Add any other context or screenshots about the feature request here. 23 | -------------------------------------------------------------------------------- /themes/hugo-academic/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | ### Purpose 2 | 3 | Describe the purpose of this change. If there is an existing issue that is resolved by this pull request, please reference it in the form `Fixes #1234` where 1234 is the relevant issue number. 4 | 5 | ### Screenshots 6 | 7 | If this is a GUI change, try to include screenshots of the change. If not, please delete this section. 8 | 9 | ### Documentation 10 | 11 | If this is an enhancement, add a link here to the corresponding pull request on https://github.com/sourcethemes/academic-www or describe the documentation changes necessary. 12 | -------------------------------------------------------------------------------- /themes/hugo-academic/.gitignore: -------------------------------------------------------------------------------- 1 | # IDE specific 2 | .idea/ 3 | .vscode/ 4 | 5 | # Hugo 6 | exampleSite/public/ 7 | 8 | # Jupyter 9 | .ipynb_checkpoints/ 10 | 11 | # Node 12 | node_modules/ 13 | -------------------------------------------------------------------------------- /themes/hugo-academic/academic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/academic.png -------------------------------------------------------------------------------- /themes/hugo-academic/archetypes/authors/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/archetypes/authors/avatar.jpg -------------------------------------------------------------------------------- /themes/hugo-academic/archetypes/docs.md: -------------------------------------------------------------------------------- 1 | --- 2 | # Documentation: https://sourcethemes.com/academic/docs/managing-content/ 3 | 4 | title: "{{ replace .Name "-" " " | title }}" 5 | linktitle: "{{ replace .Name "-" " " | title }}" 6 | summary: 7 | date: {{ .Date }} 8 | lastmod: {{ .Date }} 9 | draft: false # Is this a draft? true/false 10 | toc: true # Show table of contents? true/false 11 | type: docs # Do not modify. 12 | 13 | # Add menu entry to sidebar. 14 | # - Substitute `example` with the name of your course/documentation folder. 15 | # - name: Declare this menu item as a parent with ID `name`. 16 | # - parent: Reference a parent ID if this page is a child. 17 | # - weight: Position of link in menu. 18 | menu: 19 | example: 20 | name: YourParentID 21 | # parent: YourParentID 22 | weight: 1 23 | --- 24 | -------------------------------------------------------------------------------- /themes/hugo-academic/archetypes/slides/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | # Documentation: https://sourcethemes.com/academic/docs/managing-content/ 3 | 4 | title: "{{ replace .Name "-" " " | title }}" 5 | summary: "" 6 | authors: [] 7 | tags: [] 8 | categories: [] 9 | date: {{ .Date }} 10 | slides: 11 | # Choose a theme from https://github.com/hakimel/reveal.js#theming 12 | theme: black 13 | # Choose a code highlighting style (if highlighting enabled in `params.toml`) 14 | # Light style: github. Dark style: dracula (default). 15 | highlight_style: dracula 16 | --- 17 | 18 | # Title 19 | 20 | Author Name 21 | 22 | --- 23 | 24 | ## Slide 2 25 | 26 | ... 27 | -------------------------------------------------------------------------------- /themes/hugo-academic/assets/css/reveal_custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/assets/css/reveal_custom.css -------------------------------------------------------------------------------- /themes/hugo-academic/assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/assets/images/icon.png -------------------------------------------------------------------------------- /themes/hugo-academic/assets/js/mathjax-config.js: -------------------------------------------------------------------------------- 1 | // MathJax Configuration 2 | // 3 | // v2 to v3 upgrade notes: 4 | // - The CommonHTML.linebreaks option is not yet implemented (but may be in a future release) 5 | // - The TeX.noUndefined.attributes option is not yet implemented (but may be in a future release) 6 | window.MathJax = { 7 | tex: { 8 | inlineMath: [['$', '$'], ['\\(', '\\)']], 9 | displayMath: [['$$', '$$'], ['\\[', '\\]']], 10 | processEscapes: false, 11 | packages: {'[+]': ['noerrors']} 12 | }, 13 | loader: { 14 | load: ['[tex]/noerrors'] 15 | } 16 | }; 17 | -------------------------------------------------------------------------------- /themes/hugo-academic/assets/scss/academic/_integrations.scss: -------------------------------------------------------------------------------- 1 | /* Mermaid.js div */ 2 | div.mermaid { 3 | width: 100%; 4 | text-align: center; 5 | margin-bottom: 1rem; 6 | } 7 | -------------------------------------------------------------------------------- /themes/hugo-academic/assets/scss/academic/academic.scss: -------------------------------------------------------------------------------- 1 | /************************************************* 2 | * Academic: The Website Builder for Hugo 3 | * Designed by @GeorgeCushen 4 | * https://sourcethemes.com/academic/ 5 | * License: https://github.com/gcushen/hugo-academic/blob/master/LICENSE.md 6 | **************************************************/ 7 | 8 | @import "root"; 9 | @import "nav"; 10 | @import "card"; 11 | @import "search"; 12 | @import "content"; 13 | @import "listings"; 14 | @import "widgets"; 15 | @import "docs"; 16 | @import "dark"; 17 | @import "integrations"; 18 | -------------------------------------------------------------------------------- /themes/hugo-academic/assets/scss/bootstrap_variables.scss: -------------------------------------------------------------------------------- 1 | /* Set Bootstrap variables */ 2 | 3 | // Set colors. 4 | $primary: $sta-primary; 5 | $text-muted: rgba(0,0,0,0.54); 6 | 7 | // Container widths - override XL default of `1140px`. 8 | $container-max-widths: ( 9 | sm: 540px, 10 | md: 720px, 11 | lg: 960px, 12 | xl: 1200px 13 | ); 14 | 15 | $navbar-toggler-padding-x: 0; 16 | $navbar-toggler-font-size: 18px; 17 | $navbar-brand-font-size: 1.2rem; 18 | 19 | $navbar-light-color: $sta-menu-text; 20 | $navbar-light-active-color: $sta-menu-text-active; 21 | $navbar-light-brand-color: $sta-menu-title; 22 | $navbar-light-brand-hover-color: $navbar-light-active-color; 23 | $navbar-light-toggler-border-color: transparent; 24 | -------------------------------------------------------------------------------- /themes/hugo-academic/assets/scss/custom.scss: -------------------------------------------------------------------------------- 1 | // Override this file to add your own SCSS styling. 2 | -------------------------------------------------------------------------------- /themes/hugo-academic/assets/scss/vendor/bootstrap/_jumbotron.scss: -------------------------------------------------------------------------------- 1 | .jumbotron { 2 | padding: $jumbotron-padding ($jumbotron-padding / 2); 3 | margin-bottom: $jumbotron-padding; 4 | color: $jumbotron-color; 5 | background-color: $jumbotron-bg; 6 | @include border-radius($border-radius-lg); 7 | 8 | @include media-breakpoint-up(sm) { 9 | padding: ($jumbotron-padding * 2) $jumbotron-padding; 10 | } 11 | } 12 | 13 | .jumbotron-fluid { 14 | padding-right: 0; 15 | padding-left: 0; 16 | @include border-radius(0); 17 | } 18 | -------------------------------------------------------------------------------- /themes/hugo-academic/assets/scss/vendor/bootstrap/_media.scss: -------------------------------------------------------------------------------- 1 | .media { 2 | display: flex; 3 | align-items: flex-start; 4 | } 5 | 6 | .media-body { 7 | flex: 1; 8 | } 9 | -------------------------------------------------------------------------------- /themes/hugo-academic/assets/scss/vendor/bootstrap/_root.scss: -------------------------------------------------------------------------------- 1 | // Do not forget to update getting-started/theming.md! 2 | :root { 3 | // Custom variable values only support SassScript inside `#{}`. 4 | @each $color, $value in $colors { 5 | --#{$color}: #{$value}; 6 | } 7 | 8 | @each $color, $value in $theme-colors { 9 | --#{$color}: #{$value}; 10 | } 11 | 12 | @each $bp, $value in $grid-breakpoints { 13 | --breakpoint-#{$bp}: #{$value}; 14 | } 15 | 16 | // Use `inspect` for lists so that quoted items keep the quotes. 17 | // See https://github.com/sass/sass/issues/2383#issuecomment-336349172 18 | --font-family-sans-serif: #{inspect($font-family-sans-serif)}; 19 | --font-family-monospace: #{inspect($font-family-monospace)}; 20 | } 21 | -------------------------------------------------------------------------------- /themes/hugo-academic/assets/scss/vendor/bootstrap/_transitions.scss: -------------------------------------------------------------------------------- 1 | .fade { 2 | @include transition($transition-fade); 3 | 4 | &:not(.show) { 5 | opacity: 0; 6 | } 7 | } 8 | 9 | .collapse { 10 | &:not(.show) { 11 | display: none; 12 | } 13 | } 14 | 15 | .collapsing { 16 | position: relative; 17 | height: 0; 18 | overflow: hidden; 19 | @include transition($transition-collapse); 20 | } 21 | -------------------------------------------------------------------------------- /themes/hugo-academic/assets/scss/vendor/bootstrap/_utilities.scss: -------------------------------------------------------------------------------- 1 | @import "utilities/align"; 2 | @import "utilities/background"; 3 | @import "utilities/borders"; 4 | @import "utilities/clearfix"; 5 | @import "utilities/display"; 6 | @import "utilities/embed"; 7 | @import "utilities/flex"; 8 | @import "utilities/float"; 9 | @import "utilities/overflow"; 10 | @import "utilities/position"; 11 | @import "utilities/screenreaders"; 12 | @import "utilities/shadows"; 13 | @import "utilities/sizing"; 14 | @import "utilities/stretched-link"; 15 | @import "utilities/spacing"; 16 | @import "utilities/text"; 17 | @import "utilities/visibility"; 18 | -------------------------------------------------------------------------------- /themes/hugo-academic/assets/scss/vendor/bootstrap/bootstrap-grid.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap Grid v4.4.1 (https://getbootstrap.com/) 3 | * Copyright 2011-2019 The Bootstrap Authors 4 | * Copyright 2011-2019 Twitter, Inc. 5 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) 6 | */ 7 | 8 | html { 9 | box-sizing: border-box; 10 | -ms-overflow-style: scrollbar; 11 | } 12 | 13 | *, 14 | *::before, 15 | *::after { 16 | box-sizing: inherit; 17 | } 18 | 19 | @import "functions"; 20 | @import "variables"; 21 | 22 | @import "mixins/breakpoints"; 23 | @import "mixins/grid-framework"; 24 | @import "mixins/grid"; 25 | 26 | @import "grid"; 27 | @import "utilities/display"; 28 | @import "utilities/flex"; 29 | @import "utilities/spacing"; 30 | -------------------------------------------------------------------------------- /themes/hugo-academic/assets/scss/vendor/bootstrap/bootstrap-reboot.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap Reboot v4.4.1 (https://getbootstrap.com/) 3 | * Copyright 2011-2019 The Bootstrap Authors 4 | * Copyright 2011-2019 Twitter, Inc. 5 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) 6 | * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md) 7 | */ 8 | 9 | @import "functions"; 10 | @import "variables"; 11 | @import "mixins"; 12 | @import "reboot"; 13 | -------------------------------------------------------------------------------- /themes/hugo-academic/assets/scss/vendor/bootstrap/mixins/_alert.scss: -------------------------------------------------------------------------------- 1 | @mixin alert-variant($background, $border, $color) { 2 | color: $color; 3 | @include gradient-bg($background); 4 | border-color: $border; 5 | 6 | hr { 7 | border-top-color: darken($border, 5%); 8 | } 9 | 10 | .alert-link { 11 | color: darken($color, 10%); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /themes/hugo-academic/assets/scss/vendor/bootstrap/mixins/_background-variant.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | // Contextual backgrounds 4 | 5 | @mixin bg-variant($parent, $color, $ignore-warning: false) { 6 | #{$parent} { 7 | background-color: $color !important; 8 | } 9 | a#{$parent}, 10 | button#{$parent} { 11 | @include hover-focus() { 12 | background-color: darken($color, 10%) !important; 13 | } 14 | } 15 | @include deprecate("The `bg-variant` mixin", "v4.4.0", "v5", $ignore-warning); 16 | } 17 | 18 | @mixin bg-gradient-variant($parent, $color) { 19 | #{$parent} { 20 | background: $color linear-gradient(180deg, mix($body-bg, $color, 15%), $color) repeat-x !important; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /themes/hugo-academic/assets/scss/vendor/bootstrap/mixins/_badge.scss: -------------------------------------------------------------------------------- 1 | @mixin badge-variant($bg) { 2 | color: color-yiq($bg); 3 | background-color: $bg; 4 | 5 | @at-root a#{&} { 6 | @include hover-focus() { 7 | color: color-yiq($bg); 8 | background-color: darken($bg, 10%); 9 | } 10 | 11 | &:focus, 12 | &.focus { 13 | outline: 0; 14 | box-shadow: 0 0 0 $badge-focus-width rgba($bg, .5); 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /themes/hugo-academic/assets/scss/vendor/bootstrap/mixins/_box-shadow.scss: -------------------------------------------------------------------------------- 1 | @mixin box-shadow($shadow...) { 2 | @if $enable-shadows { 3 | $result: (); 4 | 5 | @if (length($shadow) == 1) { 6 | // We can pass `@include box-shadow(none);` 7 | $result: $shadow; 8 | } @else { 9 | // Filter to avoid invalid properties for example `box-shadow: none, 1px 1px black;` 10 | @for $i from 1 through length($shadow) { 11 | @if nth($shadow, $i) != "none" { 12 | $result: append($result, nth($shadow, $i), "comma"); 13 | } 14 | } 15 | } 16 | @if (length($result) > 0) { 17 | box-shadow: $result; 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /themes/hugo-academic/assets/scss/vendor/bootstrap/mixins/_clearfix.scss: -------------------------------------------------------------------------------- 1 | @mixin clearfix() { 2 | &::after { 3 | display: block; 4 | clear: both; 5 | content: ""; 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /themes/hugo-academic/assets/scss/vendor/bootstrap/mixins/_deprecate.scss: -------------------------------------------------------------------------------- 1 | // Deprecate mixin 2 | // 3 | // This mixin can be used to deprecate mixins or functions. 4 | // `$enable-deprecation-messages` is a global variable, `$ignore-warning` is a variable that can be passed to 5 | // some deprecated mixins to suppress the warning (for example if the mixin is still be used in the current version of Bootstrap) 6 | @mixin deprecate($name, $deprecate-version, $remove-version, $ignore-warning: false) { 7 | @if ($enable-deprecation-messages != false and $ignore-warning != true) { 8 | @warn "#{$name} has been deprecated as of #{$deprecate-version}. It will be removed entirely in #{$remove-version}."; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /themes/hugo-academic/assets/scss/vendor/bootstrap/mixins/_float.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | @mixin float-left() { 4 | float: left !important; 5 | @include deprecate("The `float-left` mixin", "v4.3.0", "v5"); 6 | } 7 | @mixin float-right() { 8 | float: right !important; 9 | @include deprecate("The `float-right` mixin", "v4.3.0", "v5"); 10 | } 11 | @mixin float-none() { 12 | float: none !important; 13 | @include deprecate("The `float-none` mixin", "v4.3.0", "v5"); 14 | } 15 | -------------------------------------------------------------------------------- /themes/hugo-academic/assets/scss/vendor/bootstrap/mixins/_list-group.scss: -------------------------------------------------------------------------------- 1 | // List Groups 2 | 3 | @mixin list-group-item-variant($state, $background, $color) { 4 | .list-group-item-#{$state} { 5 | color: $color; 6 | background-color: $background; 7 | 8 | &.list-group-item-action { 9 | @include hover-focus() { 10 | color: $color; 11 | background-color: darken($background, 5%); 12 | } 13 | 14 | &.active { 15 | color: $white; 16 | background-color: $color; 17 | border-color: $color; 18 | } 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /themes/hugo-academic/assets/scss/vendor/bootstrap/mixins/_lists.scss: -------------------------------------------------------------------------------- 1 | // Lists 2 | 3 | // Unstyled keeps list items block level, just removes default browser padding and list-style 4 | @mixin list-unstyled() { 5 | padding-left: 0; 6 | list-style: none; 7 | } 8 | -------------------------------------------------------------------------------- /themes/hugo-academic/assets/scss/vendor/bootstrap/mixins/_nav-divider.scss: -------------------------------------------------------------------------------- 1 | // Horizontal dividers 2 | // 3 | // Dividers (basically an hr) within dropdowns and nav lists 4 | 5 | @mixin nav-divider($color: $nav-divider-color, $margin-y: $nav-divider-margin-y, $ignore-warning: false) { 6 | height: 0; 7 | margin: $margin-y 0; 8 | overflow: hidden; 9 | border-top: 1px solid $color; 10 | @include deprecate("The `nav-divider()` mixin", "v4.4.0", "v5", $ignore-warning); 11 | } 12 | -------------------------------------------------------------------------------- /themes/hugo-academic/assets/scss/vendor/bootstrap/mixins/_pagination.scss: -------------------------------------------------------------------------------- 1 | // Pagination 2 | 3 | @mixin pagination-size($padding-y, $padding-x, $font-size, $line-height, $border-radius) { 4 | .page-link { 5 | padding: $padding-y $padding-x; 6 | @include font-size($font-size); 7 | line-height: $line-height; 8 | } 9 | 10 | .page-item { 11 | &:first-child { 12 | .page-link { 13 | @include border-left-radius($border-radius); 14 | } 15 | } 16 | &:last-child { 17 | .page-link { 18 | @include border-right-radius($border-radius); 19 | } 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /themes/hugo-academic/assets/scss/vendor/bootstrap/mixins/_reset-text.scss: -------------------------------------------------------------------------------- 1 | @mixin reset-text() { 2 | font-family: $font-family-base; 3 | // We deliberately do NOT reset font-size or word-wrap. 4 | font-style: normal; 5 | font-weight: $font-weight-normal; 6 | line-height: $line-height-base; 7 | text-align: left; // Fallback for where `start` is not supported 8 | text-align: start; 9 | text-decoration: none; 10 | text-shadow: none; 11 | text-transform: none; 12 | letter-spacing: normal; 13 | word-break: normal; 14 | word-spacing: normal; 15 | white-space: normal; 16 | line-break: auto; 17 | } 18 | -------------------------------------------------------------------------------- /themes/hugo-academic/assets/scss/vendor/bootstrap/mixins/_resize.scss: -------------------------------------------------------------------------------- 1 | // Resize anything 2 | 3 | @mixin resizable($direction) { 4 | overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible` 5 | resize: $direction; // Options: horizontal, vertical, both 6 | } 7 | -------------------------------------------------------------------------------- /themes/hugo-academic/assets/scss/vendor/bootstrap/mixins/_size.scss: -------------------------------------------------------------------------------- 1 | // Sizing shortcuts 2 | 3 | @mixin size($width, $height: $width) { 4 | width: $width; 5 | height: $height; 6 | @include deprecate("`size()`", "v4.3.0", "v5"); 7 | } 8 | -------------------------------------------------------------------------------- /themes/hugo-academic/assets/scss/vendor/bootstrap/mixins/_text-emphasis.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | // Typography 4 | 5 | @mixin text-emphasis-variant($parent, $color, $ignore-warning: false) { 6 | #{$parent} { 7 | color: $color !important; 8 | } 9 | @if $emphasized-link-hover-darken-percentage != 0 { 10 | a#{$parent} { 11 | @include hover-focus() { 12 | color: darken($color, $emphasized-link-hover-darken-percentage) !important; 13 | } 14 | } 15 | } 16 | @include deprecate("`text-emphasis-variant()`", "v4.4.0", "v5", $ignore-warning); 17 | } 18 | -------------------------------------------------------------------------------- /themes/hugo-academic/assets/scss/vendor/bootstrap/mixins/_text-hide.scss: -------------------------------------------------------------------------------- 1 | // CSS image replacement 2 | @mixin text-hide($ignore-warning: false) { 3 | // stylelint-disable-next-line font-family-no-missing-generic-family-keyword 4 | font: 0/0 a; 5 | color: transparent; 6 | text-shadow: none; 7 | background-color: transparent; 8 | border: 0; 9 | 10 | @include deprecate("`text-hide()`", "v4.1.0", "v5", $ignore-warning); 11 | } 12 | -------------------------------------------------------------------------------- /themes/hugo-academic/assets/scss/vendor/bootstrap/mixins/_text-truncate.scss: -------------------------------------------------------------------------------- 1 | // Text truncate 2 | // Requires inline-block or block for proper styling 3 | 4 | @mixin text-truncate() { 5 | overflow: hidden; 6 | text-overflow: ellipsis; 7 | white-space: nowrap; 8 | } 9 | -------------------------------------------------------------------------------- /themes/hugo-academic/assets/scss/vendor/bootstrap/mixins/_transition.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable property-blacklist 2 | @mixin transition($transition...) { 3 | @if $enable-transitions { 4 | @if length($transition) == 0 { 5 | transition: $transition-base; 6 | } @else { 7 | transition: $transition; 8 | } 9 | } 10 | 11 | @if $enable-prefers-reduced-motion-media-query { 12 | @media (prefers-reduced-motion: reduce) { 13 | transition: none; 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /themes/hugo-academic/assets/scss/vendor/bootstrap/mixins/_visibility.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | // Visibility 4 | 5 | @mixin invisible($visibility) { 6 | visibility: $visibility !important; 7 | @include deprecate("`invisible()`", "v4.3.0", "v5"); 8 | } 9 | -------------------------------------------------------------------------------- /themes/hugo-academic/assets/scss/vendor/bootstrap/utilities/_align.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | .align-baseline { vertical-align: baseline !important; } // Browser default 4 | .align-top { vertical-align: top !important; } 5 | .align-middle { vertical-align: middle !important; } 6 | .align-bottom { vertical-align: bottom !important; } 7 | .align-text-bottom { vertical-align: text-bottom !important; } 8 | .align-text-top { vertical-align: text-top !important; } 9 | -------------------------------------------------------------------------------- /themes/hugo-academic/assets/scss/vendor/bootstrap/utilities/_background.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | @each $color, $value in $theme-colors { 4 | @include bg-variant(".bg-#{$color}", $value, true); 5 | } 6 | 7 | @if $enable-gradients { 8 | @each $color, $value in $theme-colors { 9 | @include bg-gradient-variant(".bg-gradient-#{$color}", $value); 10 | } 11 | } 12 | 13 | .bg-white { 14 | background-color: $white !important; 15 | } 16 | 17 | .bg-transparent { 18 | background-color: transparent !important; 19 | } 20 | -------------------------------------------------------------------------------- /themes/hugo-academic/assets/scss/vendor/bootstrap/utilities/_clearfix.scss: -------------------------------------------------------------------------------- 1 | .clearfix { 2 | @include clearfix(); 3 | } 4 | -------------------------------------------------------------------------------- /themes/hugo-academic/assets/scss/vendor/bootstrap/utilities/_display.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | // 4 | // Utilities for common `display` values 5 | // 6 | 7 | @each $breakpoint in map-keys($grid-breakpoints) { 8 | @include media-breakpoint-up($breakpoint) { 9 | $infix: breakpoint-infix($breakpoint, $grid-breakpoints); 10 | 11 | @each $value in $displays { 12 | .d#{$infix}-#{$value} { display: $value !important; } 13 | } 14 | } 15 | } 16 | 17 | 18 | // 19 | // Utilities for toggling `display` in print 20 | // 21 | 22 | @media print { 23 | @each $value in $displays { 24 | .d-print-#{$value} { display: $value !important; } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /themes/hugo-academic/assets/scss/vendor/bootstrap/utilities/_float.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | @each $breakpoint in map-keys($grid-breakpoints) { 4 | @include media-breakpoint-up($breakpoint) { 5 | $infix: breakpoint-infix($breakpoint, $grid-breakpoints); 6 | 7 | .float#{$infix}-left { float: left !important; } 8 | .float#{$infix}-right { float: right !important; } 9 | .float#{$infix}-none { float: none !important; } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /themes/hugo-academic/assets/scss/vendor/bootstrap/utilities/_overflow.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | @each $value in $overflows { 4 | .overflow-#{$value} { overflow: $value !important; } 5 | } 6 | -------------------------------------------------------------------------------- /themes/hugo-academic/assets/scss/vendor/bootstrap/utilities/_position.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | // Common values 4 | @each $position in $positions { 5 | .position-#{$position} { position: $position !important; } 6 | } 7 | 8 | // Shorthand 9 | 10 | .fixed-top { 11 | position: fixed; 12 | top: 0; 13 | right: 0; 14 | left: 0; 15 | z-index: $zindex-fixed; 16 | } 17 | 18 | .fixed-bottom { 19 | position: fixed; 20 | right: 0; 21 | bottom: 0; 22 | left: 0; 23 | z-index: $zindex-fixed; 24 | } 25 | 26 | .sticky-top { 27 | @supports (position: sticky) { 28 | position: sticky; 29 | top: 0; 30 | z-index: $zindex-sticky; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /themes/hugo-academic/assets/scss/vendor/bootstrap/utilities/_screenreaders.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Screenreaders 3 | // 4 | 5 | .sr-only { 6 | @include sr-only(); 7 | } 8 | 9 | .sr-only-focusable { 10 | @include sr-only-focusable(); 11 | } 12 | -------------------------------------------------------------------------------- /themes/hugo-academic/assets/scss/vendor/bootstrap/utilities/_shadows.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | .shadow-sm { box-shadow: $box-shadow-sm !important; } 4 | .shadow { box-shadow: $box-shadow !important; } 5 | .shadow-lg { box-shadow: $box-shadow-lg !important; } 6 | .shadow-none { box-shadow: none !important; } 7 | -------------------------------------------------------------------------------- /themes/hugo-academic/assets/scss/vendor/bootstrap/utilities/_sizing.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | // Width and height 4 | 5 | @each $prop, $abbrev in (width: w, height: h) { 6 | @each $size, $length in $sizes { 7 | .#{$abbrev}-#{$size} { #{$prop}: $length !important; } 8 | } 9 | } 10 | 11 | .mw-100 { max-width: 100% !important; } 12 | .mh-100 { max-height: 100% !important; } 13 | 14 | // Viewport additional helpers 15 | 16 | .min-vw-100 { min-width: 100vw !important; } 17 | .min-vh-100 { min-height: 100vh !important; } 18 | 19 | .vw-100 { width: 100vw !important; } 20 | .vh-100 { height: 100vh !important; } 21 | -------------------------------------------------------------------------------- /themes/hugo-academic/assets/scss/vendor/bootstrap/utilities/_stretched-link.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Stretched link 3 | // 4 | 5 | .stretched-link { 6 | &::after { 7 | position: absolute; 8 | top: 0; 9 | right: 0; 10 | bottom: 0; 11 | left: 0; 12 | z-index: 1; 13 | // Just in case `pointer-events: none` is set on a parent 14 | pointer-events: auto; 15 | content: ""; 16 | // IE10 bugfix, see https://stackoverflow.com/questions/16947967/ie10-hover-pseudo-class-doesnt-work-without-background-color 17 | background-color: rgba(0, 0, 0, 0); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /themes/hugo-academic/assets/scss/vendor/bootstrap/utilities/_visibility.scss: -------------------------------------------------------------------------------- 1 | // stylelint-disable declaration-no-important 2 | 3 | // 4 | // Visibility utilities 5 | // 6 | 7 | .visible { 8 | visibility: visible !important; 9 | } 10 | 11 | .invisible { 12 | visibility: hidden !important; 13 | } 14 | -------------------------------------------------------------------------------- /themes/hugo-academic/data/academic.toml: -------------------------------------------------------------------------------- 1 | # Academic 2 | 3 | version = "4.8.0" 4 | -------------------------------------------------------------------------------- /themes/hugo-academic/data/fonts/classic.toml: -------------------------------------------------------------------------------- 1 | # Font style metadata 2 | name = "Classic" 3 | 4 | # Optional Google font URL 5 | google_fonts = "Lato:400,700|Merriweather|Roboto+Mono" 6 | 7 | # Font families 8 | heading_font = "Lato" 9 | body_font = "Merriweather" 10 | nav_font = "Lato" 11 | mono_font = "Roboto Mono" 12 | -------------------------------------------------------------------------------- /themes/hugo-academic/data/fonts/minimal.toml: -------------------------------------------------------------------------------- 1 | # Font style metadata 2 | name = "Minimal" 3 | 4 | # Optional Google font URL 5 | google_fonts = "Montserrat:400,700|Roboto:400,400italic,700|Roboto+Mono" 6 | 7 | # Font families 8 | heading_font = "Montserrat" 9 | body_font = "Roboto" 10 | nav_font = "Roboto" 11 | mono_font = "Roboto Mono" 12 | -------------------------------------------------------------------------------- /themes/hugo-academic/data/fonts/mr_robot.toml: -------------------------------------------------------------------------------- 1 | # Font style metadata 2 | name = "Mr Robot" 3 | 4 | # Optional Google font URL 5 | google_fonts = "B612+Mono:400,700|Orbitron:400,700" 6 | 7 | # Font families 8 | heading_font = "Orbitron" 9 | body_font = "B612 Mono" 10 | nav_font = "B612 Mono" 11 | mono_font = "B612 Mono" 12 | -------------------------------------------------------------------------------- /themes/hugo-academic/data/fonts/rose.toml: -------------------------------------------------------------------------------- 1 | # Font style metadata 2 | name = "Rose" 3 | 4 | # Optional Google font URL 5 | google_fonts = "Cutive+Mono|Lora:400,700|Roboto:400,700" 6 | 7 | # Font families 8 | heading_font = "Lora" 9 | body_font = "Roboto" 10 | nav_font = "Lora" 11 | mono_font = "Cutive Mono" 12 | -------------------------------------------------------------------------------- /themes/hugo-academic/data/i18n/languages.yaml: -------------------------------------------------------------------------------- 1 | "ca": "Català" 2 | "cs": "Česky" 3 | "da": "Dansk" 4 | "de": "Deutsch" 5 | "el": "Ελληνικά" 6 | "en": "English" 7 | "es": "Español" 8 | "et": "Eesti" 9 | "eu": "Euskara" 10 | "fr": "Français" 11 | "hu": "Magyar" 12 | "id": "Bahasa Indonesia" 13 | "it": "Italiano" 14 | "ja": "日本語" 15 | "km": "ភាសាខ្មែរ" 16 | "ko": "한국어" 17 | "lt": "Lietuvių" 18 | "lv": "Latviešu" 19 | "nl": "Nederlands" 20 | "pl": "Polski" 21 | "pt": "Português" 22 | "ro": "Română" 23 | "ru": "Русский" 24 | "so": "Soomaali" 25 | "sv": "Svenska" 26 | "tr": "Türkçe" 27 | "uk": "Українська" 28 | "vi": "Tiếng Việt" 29 | "zh": "中文 (简体)" 30 | "zh-Hant": "中文 (繁體)" 31 | -------------------------------------------------------------------------------- /themes/hugo-academic/data/publication_types.toml: -------------------------------------------------------------------------------- 1 | # Publication types. 2 | # Each item in the list corresponds to an item in the language packs. 3 | types = [ "pub_uncat", 4 | "pub_conf", 5 | "pub_journal", 6 | "pub_preprint", 7 | "pub_report", 8 | "pub_book", 9 | "pub_book_section", 10 | "pub_thesis", 11 | "pub_patent" 12 | ] 13 | -------------------------------------------------------------------------------- /themes/hugo-academic/data/themes/1950s.toml: -------------------------------------------------------------------------------- 1 | # Theme metadata 2 | name = "1950s" 3 | 4 | # Is theme light or dark? 5 | light = true 6 | 7 | # Primary 8 | primary = "#EF525B" 9 | 10 | # Menu 11 | menu_primary = "#24C2CB" 12 | menu_text = "#fff" 13 | menu_text_active = "#00828B" 14 | menu_title = "#fff" 15 | 16 | # Backgrounds 17 | background = "#EAE7D6" 18 | home_section_odd = "#EAE7D6" 19 | home_section_even = "#EAE7D6" 20 | 21 | font = "rose" 22 | -------------------------------------------------------------------------------- /themes/hugo-academic/data/themes/apogee.toml: -------------------------------------------------------------------------------- 1 | # Theme metadata 2 | name = "Apogee" 3 | 4 | # Is theme light or dark? 5 | light = false 6 | 7 | # Primary 8 | primary = "#EAF04E" 9 | 10 | # Menu 11 | menu_primary = "#312450" 12 | menu_text = "#F2BE4E" 13 | menu_text_active = "#FFE1A0" 14 | menu_title = "#E0A526" 15 | 16 | # Home sections 17 | home_section_odd = "#5e42a6" 18 | home_section_even = "#5e42a6" 19 | -------------------------------------------------------------------------------- /themes/hugo-academic/data/themes/coffee.toml: -------------------------------------------------------------------------------- 1 | # Theme metadata 2 | name = "Coffee" 3 | 4 | # Is theme light or dark? 5 | light = true 6 | 7 | # Primary 8 | primary = "#795548" 9 | 10 | # Menu 11 | menu_primary = "#795548" 12 | menu_text = "rgba(255,255,255,0.6)" 13 | menu_text_active = "rgba(255,255,255,1)" 14 | menu_title = "#fff" 15 | 16 | # Backgrounds 17 | background = "hsla(16, 24%, 85%, 1)" 18 | home_section_odd = "hsla(16, 24%, 85%, 1)" 19 | home_section_even = "hsla(16, 24%, 80%, 1)" 20 | 21 | font = "rose" 22 | -------------------------------------------------------------------------------- /themes/hugo-academic/data/themes/dark.toml: -------------------------------------------------------------------------------- 1 | # Theme metadata 2 | name = "Dark" 3 | 4 | # Is theme light or dark? 5 | light = false 6 | 7 | # Primary 8 | primary = "hsl(339, 90%, 68%)" 9 | 10 | # Menu 11 | menu_primary = "rgb(20, 22, 34)" 12 | menu_text = "rgba(255,255,255,0.6)" 13 | menu_text_active = "rgba(255,255,255,1)" 14 | menu_title = "#fff" 15 | 16 | # Home sections 17 | home_section_odd = "hsla(231, 15%, 18%, 1)" 18 | home_section_even = "hsla(231, 15%, 16%, 1)" 19 | -------------------------------------------------------------------------------- /themes/hugo-academic/data/themes/forest.toml: -------------------------------------------------------------------------------- 1 | # Theme metadata 2 | name = "Forest" 3 | 4 | # Is theme light or dark? 5 | light = true 6 | 7 | # Primary 8 | primary = "#4caf50" 9 | 10 | # Menu 11 | menu_primary = "#4caf50" 12 | menu_text = "#fff" 13 | menu_text_active = "#1b5e20" 14 | menu_title = "#fff" 15 | 16 | # Home sections 17 | home_section_odd = "rgb(255, 255, 255)" 18 | home_section_even = "rgb(247, 247, 247)" 19 | -------------------------------------------------------------------------------- /themes/hugo-academic/data/themes/minimal.toml: -------------------------------------------------------------------------------- 1 | # Theme metadata 2 | name = "Minimal" 3 | 4 | # Is theme light or dark? 5 | light = true 6 | 7 | # Primary 8 | primary = "#2962ff" 9 | 10 | # Menu 11 | menu_primary = "#fff" 12 | menu_text = "#34495e" 13 | menu_text_active = "#2962ff" 14 | menu_title = "#2b2b2b" 15 | 16 | # Home sections 17 | home_section_odd = "rgb(255, 255, 255)" 18 | home_section_even = "rgb(247, 247, 247)" 19 | -------------------------------------------------------------------------------- /themes/hugo-academic/data/themes/mr_robot.toml: -------------------------------------------------------------------------------- 1 | # Theme metadata 2 | name = "Mr Robot" 3 | 4 | # Is theme light or dark? 5 | light = false 6 | 7 | # Primary 8 | primary = "rgb(0, 136, 204)" 9 | 10 | # Menu 11 | menu_primary = "rgb(33, 37, 41)" 12 | menu_text = "rgb(0, 136, 204)" 13 | menu_text_active = "rgba(255,255,255,1)" 14 | menu_title = "rgb(153, 153, 153)" 15 | 16 | # Home sections 17 | home_section_odd = "rgb(29, 33, 39)" 18 | home_section_even = "rgb(29, 33, 39)" 19 | -------------------------------------------------------------------------------- /themes/hugo-academic/data/themes/ocean.toml: -------------------------------------------------------------------------------- 1 | # Theme metadata 2 | name = "Ocean" 3 | 4 | # Is theme light or dark? 5 | light = true 6 | 7 | # Primary 8 | primary = "#3f51b5" 9 | 10 | # Menu 11 | menu_primary = "#3f51b5" # 500 12 | menu_text = "#fff" 13 | menu_text_active = "#8c9eff" # A100 14 | menu_title = "#fff" 15 | 16 | # Home sections 17 | home_section_odd = "rgb(255, 255, 255)" 18 | home_section_even = "rgb(247, 247, 247)" 19 | -------------------------------------------------------------------------------- /themes/hugo-academic/data/themes/rose.toml: -------------------------------------------------------------------------------- 1 | # Theme metadata 2 | name = "Rose" 3 | 4 | # Is theme light or dark? 5 | light = true 6 | 7 | # Primary 8 | primary = "rgb(251, 191, 183)" 9 | 10 | # Menu 11 | menu_primary = "rgb(247, 247, 247)" 12 | menu_text = "#000" 13 | menu_text_active = "rgb(25, 25, 25)" 14 | menu_title = "#000" 15 | 16 | # Home sections 17 | home_section_odd = "#FFF" 18 | home_section_even = "rgb(234, 242, 250)" 19 | -------------------------------------------------------------------------------- /themes/hugo-academic/data/themes/strawberry.toml: -------------------------------------------------------------------------------- 1 | # Theme metadata 2 | name = "Strawberry" 3 | 4 | # Is theme light or dark? 5 | light = true 6 | 7 | # Primary 8 | primary = "#ff3860" 9 | 10 | # Menu 11 | menu_primary = "#ff3860" 12 | menu_text = "#fff" 13 | menu_text_active = "rgb(208, 255, 56)" 14 | menu_title = "#fff" 15 | 16 | # Home sections 17 | home_section_odd = "#fff" 18 | home_section_even = "#fff" 19 | -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/config/_default/languages.toml: -------------------------------------------------------------------------------- 1 | # Languages 2 | # Create a `[X]` block for each language you want, where X is the language ID. 3 | # Refer to https://sourcethemes.com/academic/docs/language/ 4 | 5 | # Configure the English version of the site. 6 | [en] 7 | languageCode = "en-us" 8 | # contentDir = "content/en" # Uncomment for multi-lingual sites, and move English content into `en` sub-folder. 9 | 10 | # Uncomment the lines below to configure your website in a second language. 11 | #[zh] 12 | # languageCode = "zh-Hans" 13 | # contentDir = "content/zh" 14 | # title = "Chinese website title..." 15 | # [zh.params] 16 | # description = "Site description in Chinese..." 17 | # [[zh.menu.main]] 18 | # name = "Wo" 19 | # url = "#about" 20 | # weight = 1 21 | -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/content/authors/admin/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/exampleSite/content/authors/admin/avatar.jpg -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/content/courses/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Courses 3 | layout: docs # Do not modify. 4 | 5 | # Optional header image (relative to `static/img/` folder). 6 | header: 7 | caption: "" 8 | image: "" 9 | --- 10 | 11 | -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/content/home/about.md: -------------------------------------------------------------------------------- 1 | +++ 2 | # About widget. 3 | widget = "about" # See https://sourcethemes.com/academic/docs/page-builder/ 4 | headless = true # This file represents a page section. 5 | active = true # Activate this widget? true/false 6 | weight = 20 # Order that this section will appear in. 7 | 8 | title = "Biography" 9 | 10 | # Choose the user profile to display 11 | # This should be the username of a profile in your `content/authors/` folder. 12 | # See https://sourcethemes.com/academic/docs/get-started/#introduce-yourself 13 | author = "admin" 14 | +++ 15 | -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/content/home/contact.md: -------------------------------------------------------------------------------- 1 | +++ 2 | # Contact widget. 3 | widget = "contact" # See https://sourcethemes.com/academic/docs/page-builder/ 4 | headless = true # This file represents a page section. 5 | active = true # Activate this widget? true/false 6 | weight = 130 # Order that this section will appear. 7 | 8 | title = "Contact" 9 | subtitle = "" 10 | 11 | # Automatically link email and phone? 12 | autolink = true 13 | 14 | # Email form provider 15 | # 0: Disable email form 16 | # 1: Netlify (requires that the site is hosted by Netlify) 17 | # 2: formspree.io 18 | email_form = 2 19 | +++ 20 | 21 | -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/content/home/gallery/gallery/theme-1950s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/exampleSite/content/home/gallery/gallery/theme-1950s.png -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/content/home/gallery/gallery/theme-apogee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/exampleSite/content/home/gallery/gallery/theme-apogee.png -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/content/home/gallery/gallery/theme-coffee-playfair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/exampleSite/content/home/gallery/gallery/theme-coffee-playfair.png -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/content/home/gallery/gallery/theme-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/exampleSite/content/home/gallery/gallery/theme-dark.png -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/content/home/gallery/gallery/theme-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/exampleSite/content/home/gallery/gallery/theme-default.png -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/content/home/gallery/gallery/theme-forest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/exampleSite/content/home/gallery/gallery/theme-forest.png -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/content/home/gallery/gallery/theme-ocean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/exampleSite/content/home/gallery/gallery/theme-ocean.png -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/content/home/gallery/gallery/theme-strawberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/exampleSite/content/home/gallery/gallery/theme-strawberry.png -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/content/home/gallery/index.md: -------------------------------------------------------------------------------- 1 | +++ 2 | # Gallery section using the Blank widget and Gallery element (shortcode). 3 | widget = "blank" # See https://sourcethemes.com/academic/docs/page-builder/ 4 | headless = true # This file represents a page section. 5 | active = true # Activate this widget? true/false 6 | weight = 66 # Order that this section will appear. 7 | 8 | title = "Gallery" 9 | subtitle = "" 10 | +++ 11 | 12 | {{< gallery >}} 13 | -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/content/home/index.md: -------------------------------------------------------------------------------- 1 | +++ 2 | # Homepage 3 | type = "widget_page" 4 | headless = true # Homepage is headless, other widget pages are not. 5 | +++ 6 | -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/content/home/tags.md: -------------------------------------------------------------------------------- 1 | +++ 2 | # Tag Cloud widget. 3 | widget = "tag_cloud" # See https://sourcethemes.com/academic/docs/page-builder/ 4 | headless = true # This file represents a page section. 5 | active = true # Activate this widget? true/false 6 | weight = 120 # Order that this section will appear. 7 | 8 | title = "Popular Topics" 9 | subtitle = "" 10 | 11 | [content] 12 | # Choose the taxonomy from `config.toml` to display (e.g. tags, categories) 13 | taxonomy = "tags" 14 | 15 | # Choose how many tags you would like to display (0 = all tags) 16 | count = 20 17 | 18 | [design] 19 | # Minimum and maximum font sizes (1.0 = 100%). 20 | font_size_min = 0.7 21 | font_size_max = 2.0 22 | +++ 23 | -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/content/post/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Posts 3 | 4 | # View. 5 | # 1 = List 6 | # 2 = Compact 7 | # 3 = Card 8 | view: 2 9 | 10 | # Optional header image (relative to `static/img/` folder). 11 | header: 12 | caption: "" 13 | image: "" 14 | --- 15 | -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/content/post/getting-started/featured.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/exampleSite/content/post/getting-started/featured.jpg -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/content/post/jupyter/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/exampleSite/content/post/jupyter/featured.png -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/content/post/jupyter/index_1_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/exampleSite/content/post/jupyter/index_1_0.png -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/content/post/writing-technical-content/featured.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/exampleSite/content/post/writing-technical-content/featured.jpg -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/content/privacy.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Privacy Policy 3 | date: "2018-06-28T00:00:00+01:00" 4 | draft: true 5 | share: false 6 | commentable: false 7 | editable: false 8 | 9 | # Optional header image (relative to `static/img/` folder). 10 | header: 11 | caption: "" 12 | image: "" 13 | --- 14 | 15 | ... 16 | -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/content/project/external-project/featured.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/exampleSite/content/project/external-project/featured.jpg -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/content/project/external-project/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: External Project 3 | summary: An example of linking directly to an external project website using `external_link`. 4 | tags: 5 | - Demo 6 | date: "2016-04-27T00:00:00Z" 7 | 8 | # Optional external URL for project (replaces project detail page). 9 | external_link: http://example.org 10 | 11 | image: 12 | caption: Photo by Toa Heftiba on Unsplash 13 | focal_point: Smart 14 | --- 15 | -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/content/project/internal-project/featured.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/exampleSite/content/project/internal-project/featured.jpg -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/content/publication/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Publications 3 | 4 | # View. 5 | # 1 = List 6 | # 2 = Compact 7 | # 3 = Card 8 | # 4 = Citation 9 | view: 4 10 | 11 | # Optional header image (relative to `static/img/` folder). 12 | header: 13 | caption: "" 14 | image: "" 15 | --- 16 | -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/content/publication/conference-paper/cite.bib: -------------------------------------------------------------------------------- 1 | @inproceedings{example1, 2 | title={An example conference paper}, 3 | author={Bighetti, Nelson and Ford, Robert}, 4 | booktitle={Source Themes Conference}, 5 | pages={1--6}, 6 | year={2013}, 7 | organization={IEEE} 8 | } 9 | -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/content/publication/conference-paper/featured.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/exampleSite/content/publication/conference-paper/featured.jpg -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/content/publication/journal-article/cite.bib: -------------------------------------------------------------------------------- 1 | @article{example2, 2 | title = {An example journal article}, 3 | author={Bighetti, Nelson and Ford, Robert}, 4 | journal = {Journal of Source Themes}, 5 | year = 2015, 6 | volume = 1, 7 | number = 1 8 | } 9 | -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/content/publication/journal-article/featured.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/exampleSite/content/publication/journal-article/featured.jpg -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/content/publication/preprint/featured.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/exampleSite/content/publication/preprint/featured.jpg -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/content/talk/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Recent & Upcoming Talks 3 | 4 | # View. 5 | # 1 = List 6 | # 2 = Compact 7 | # 3 = Card 8 | view: 2 9 | 10 | # Optional header image (relative to `static/img/` folder). 11 | header: 12 | caption: "" 13 | image: "" 14 | --- 15 | -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/content/talk/example/featured.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/exampleSite/content/talk/example/featured.jpg -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/content/terms.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Terms 3 | date: "2018-06-28T00:00:00+01:00" 4 | draft: true 5 | share: false 6 | commentable: false 7 | editable: false 8 | 9 | # Optional header image (relative to `static/img/` folder). 10 | header: 11 | caption: "" 12 | image: "" 13 | --- 14 | 15 | ... 16 | -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/resources/_gen/assets/scss/scss/main.scss_6c95cc1249b26b124274204dbf970c34.json: -------------------------------------------------------------------------------- 1 | {"Target":"css/academic.css","MediaType":"text/css","Data":{}} -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/resources/_gen/images/authors/admin/avatar_hu52a603635ecebd45650b162dadabb4e5_12861_270x270_fill_q90_lanczos_center.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/exampleSite/resources/_gen/images/authors/admin/avatar_hu52a603635ecebd45650b162dadabb4e5_12861_270x270_fill_q90_lanczos_center.jpg -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/resources/_gen/images/authors/admin2/avatar_hu52a603635ecebd45650b162dadabb4e5_12861_270x270_fill_q90_lanczos_center.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/exampleSite/resources/_gen/images/authors/admin2/avatar_hu52a603635ecebd45650b162dadabb4e5_12861_270x270_fill_q90_lanczos_center.jpg -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/resources/_gen/images/home/gallery/gallery/theme-1950s_huaf5482f8cea0c5a703a328640e3b7509_21614_0x190_resize_lanczos_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/exampleSite/resources/_gen/images/home/gallery/gallery/theme-1950s_huaf5482f8cea0c5a703a328640e3b7509_21614_0x190_resize_lanczos_2.png -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/resources/_gen/images/home/gallery/gallery/theme-apogee_hu4b45d99db97150df01464c393bfd17d4_24119_0x190_resize_lanczos_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/exampleSite/resources/_gen/images/home/gallery/gallery/theme-apogee_hu4b45d99db97150df01464c393bfd17d4_24119_0x190_resize_lanczos_2.png -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/resources/_gen/images/home/gallery/gallery/theme-coffee-playfair_hu446a8f670cc5622adcc77b97ba95f6c5_22462_0x190_resize_lanczos_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/exampleSite/resources/_gen/images/home/gallery/gallery/theme-coffee-playfair_hu446a8f670cc5622adcc77b97ba95f6c5_22462_0x190_resize_lanczos_2.png -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/resources/_gen/images/home/gallery/gallery/theme-dark_hu1e8601ecc47f58eada7743fdcd709d3d_21456_0x190_resize_lanczos_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/exampleSite/resources/_gen/images/home/gallery/gallery/theme-dark_hu1e8601ecc47f58eada7743fdcd709d3d_21456_0x190_resize_lanczos_2.png -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/resources/_gen/images/home/gallery/gallery/theme-default_huba6228b7bdf30e2f03f12ea91b2cba0d_21751_0x190_resize_lanczos_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/exampleSite/resources/_gen/images/home/gallery/gallery/theme-default_huba6228b7bdf30e2f03f12ea91b2cba0d_21751_0x190_resize_lanczos_2.png -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/resources/_gen/images/home/gallery/gallery/theme-forest_hu4f093a1c683134431456584193ea41ee_21797_0x190_resize_lanczos_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/exampleSite/resources/_gen/images/home/gallery/gallery/theme-forest_hu4f093a1c683134431456584193ea41ee_21797_0x190_resize_lanczos_2.png -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/resources/_gen/images/home/gallery/gallery/theme-ocean_hu14831ccafc2219f30a7a096fa7617e01_21760_0x190_resize_lanczos_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/exampleSite/resources/_gen/images/home/gallery/gallery/theme-ocean_hu14831ccafc2219f30a7a096fa7617e01_21760_0x190_resize_lanczos_2.png -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/resources/_gen/images/home/gallery/gallery/theme-strawberry_hu36b0b347fcca08bd39e2df22dcedbdfb_39532_0x190_resize_lanczos_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/exampleSite/resources/_gen/images/home/gallery/gallery/theme-strawberry_hu36b0b347fcca08bd39e2df22dcedbdfb_39532_0x190_resize_lanczos_2.png -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/resources/_gen/images/images/icon_hu0b7a4cb9992c9ac0e91bd28ffd38dd00_9727_192x192_fill_lanczos_center_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/exampleSite/resources/_gen/images/images/icon_hu0b7a4cb9992c9ac0e91bd28ffd38dd00_9727_192x192_fill_lanczos_center_2.png -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/resources/_gen/images/images/icon_hu0b7a4cb9992c9ac0e91bd28ffd38dd00_9727_32x32_fill_lanczos_center_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/exampleSite/resources/_gen/images/images/icon_hu0b7a4cb9992c9ac0e91bd28ffd38dd00_9727_32x32_fill_lanczos_center_2.png -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/resources/_gen/images/images/icon_hu0b7a4cb9992c9ac0e91bd28ffd38dd00_9727_512x512_fill_lanczos_center_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/exampleSite/resources/_gen/images/images/icon_hu0b7a4cb9992c9ac0e91bd28ffd38dd00_9727_512x512_fill_lanczos_center_2.png -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/resources/_gen/images/post/getting-started/featured_hub9ee31969f44a6711206a2baf9f065b4_241861_1200x0_resize_q90_lanczos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/exampleSite/resources/_gen/images/post/getting-started/featured_hub9ee31969f44a6711206a2baf9f065b4_241861_1200x0_resize_q90_lanczos.jpg -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/resources/_gen/images/post/getting-started/featured_hub9ee31969f44a6711206a2baf9f065b4_241861_150x0_resize_q90_lanczos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/exampleSite/resources/_gen/images/post/getting-started/featured_hub9ee31969f44a6711206a2baf9f065b4_241861_150x0_resize_q90_lanczos.jpg -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/resources/_gen/images/post/jupyter/featured_hub1daa031c2af6888ff37bd93eb033a1a_71549_150x0_resize_lanczos_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/exampleSite/resources/_gen/images/post/jupyter/featured_hub1daa031c2af6888ff37bd93eb033a1a_71549_150x0_resize_lanczos_2.png -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/resources/_gen/images/post/jupyter/featured_hub1daa031c2af6888ff37bd93eb033a1a_71549_720x0_resize_lanczos_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/exampleSite/resources/_gen/images/post/jupyter/featured_hub1daa031c2af6888ff37bd93eb033a1a_71549_720x0_resize_lanczos_2.png -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/resources/_gen/images/post/writing-technical-content/featured_huc72159e0fc0d14b85f60d34436a630f0_266353_150x0_resize_q90_lanczos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/exampleSite/resources/_gen/images/post/writing-technical-content/featured_huc72159e0fc0d14b85f60d34436a630f0_266353_150x0_resize_q90_lanczos.jpg -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/resources/_gen/images/post/writing-technical-content/featured_huc72159e0fc0d14b85f60d34436a630f0_266353_2560x2560_fit_q90_lanczos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/exampleSite/resources/_gen/images/post/writing-technical-content/featured_huc72159e0fc0d14b85f60d34436a630f0_266353_2560x2560_fit_q90_lanczos.jpg -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/resources/_gen/images/project/external-project/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_329522_550x0_resize_q90_lanczos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/exampleSite/resources/_gen/images/project/external-project/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_329522_550x0_resize_q90_lanczos.jpg -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/resources/_gen/images/project/external-project/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_329522_720x0_resize_q90_lanczos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/exampleSite/resources/_gen/images/project/external-project/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_329522_720x0_resize_q90_lanczos.jpg -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/resources/_gen/images/project/internal-project/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_224363_550x0_resize_q90_lanczos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/exampleSite/resources/_gen/images/project/internal-project/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_224363_550x0_resize_q90_lanczos.jpg -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/resources/_gen/images/project/internal-project/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_224363_720x0_resize_q90_lanczos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/exampleSite/resources/_gen/images/project/internal-project/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_224363_720x0_resize_q90_lanczos.jpg -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/resources/_gen/images/publication/conference-paper/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_312700_150x0_resize_q90_lanczos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/exampleSite/resources/_gen/images/publication/conference-paper/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_312700_150x0_resize_q90_lanczos.jpg -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/resources/_gen/images/publication/conference-paper/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_312700_720x0_resize_q90_lanczos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/exampleSite/resources/_gen/images/publication/conference-paper/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_312700_720x0_resize_q90_lanczos.jpg -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/resources/_gen/images/publication/conference-paper/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_312700_918x517_fill_q90_lanczos_smart1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/exampleSite/resources/_gen/images/publication/conference-paper/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_312700_918x517_fill_q90_lanczos_smart1.jpg -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/resources/_gen/images/publication/journal-article/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_214168_150x0_resize_q90_lanczos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/exampleSite/resources/_gen/images/publication/journal-article/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_214168_150x0_resize_q90_lanczos.jpg -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/resources/_gen/images/publication/journal-article/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_214168_720x0_resize_q90_lanczos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/exampleSite/resources/_gen/images/publication/journal-article/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_214168_720x0_resize_q90_lanczos.jpg -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/resources/_gen/images/publication/preprint/featured_hu559a5add5185b02575aa8333502ab2cc_220813_150x0_resize_q90_lanczos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/exampleSite/resources/_gen/images/publication/preprint/featured_hu559a5add5185b02575aa8333502ab2cc_220813_150x0_resize_q90_lanczos.jpg -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/resources/_gen/images/publication/preprint/featured_hu559a5add5185b02575aa8333502ab2cc_220813_720x0_resize_q90_lanczos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/exampleSite/resources/_gen/images/publication/preprint/featured_hu559a5add5185b02575aa8333502ab2cc_220813_720x0_resize_q90_lanczos.jpg -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/resources/_gen/images/talk/example/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_620088_150x0_resize_q90_lanczos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/exampleSite/resources/_gen/images/talk/example/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_620088_150x0_resize_q90_lanczos.jpg -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/resources/_gen/images/talk/example/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_620088_720x0_resize_q90_lanczos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/exampleSite/resources/_gen/images/talk/example/featured_hu3d03a01dcc18bc5be0e67db3d8d209a6_620088_720x0_resize_q90_lanczos.jpg -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/static/img/boards.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/exampleSite/static/img/boards.jpg -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/static/img/headers/bubbles-wide.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/exampleSite/static/img/headers/bubbles-wide.jpg -------------------------------------------------------------------------------- /themes/hugo-academic/exampleSite/static/img/hero-academic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/exampleSite/static/img/hero-academic.png -------------------------------------------------------------------------------- /themes/hugo-academic/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/images/screenshot.png -------------------------------------------------------------------------------- /themes/hugo-academic/images/theme-1950s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/images/theme-1950s.png -------------------------------------------------------------------------------- /themes/hugo-academic/images/theme-apogee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/images/theme-apogee.png -------------------------------------------------------------------------------- /themes/hugo-academic/images/theme-coffee-playfair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/images/theme-coffee-playfair.png -------------------------------------------------------------------------------- /themes/hugo-academic/images/theme-cupcake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/images/theme-cupcake.png -------------------------------------------------------------------------------- /themes/hugo-academic/images/theme-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/images/theme-dark.png -------------------------------------------------------------------------------- /themes/hugo-academic/images/theme-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/images/theme-default.png -------------------------------------------------------------------------------- /themes/hugo-academic/images/theme-forest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/images/theme-forest.png -------------------------------------------------------------------------------- /themes/hugo-academic/images/theme-ocean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/images/theme-ocean.png -------------------------------------------------------------------------------- /themes/hugo-academic/images/theme-spacer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/images/theme-spacer.png -------------------------------------------------------------------------------- /themes/hugo-academic/images/theme-strawberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/images/theme-strawberry.png -------------------------------------------------------------------------------- /themes/hugo-academic/images/themes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/images/themes.png -------------------------------------------------------------------------------- /themes/hugo-academic/images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uopsych/summeR-bootcamp-2020/989b6ba39375cedcf234254d78e4c710af5e2a0f/themes/hugo-academic/images/tn.png -------------------------------------------------------------------------------- /themes/hugo-academic/layouts/_default/_markup/render-link.html: -------------------------------------------------------------------------------- 1 | {{/* A Hugo Markdown render hook to parse links, opening external links in new tabs. */}} 2 | {{ .Text | safeHTML }} -------------------------------------------------------------------------------- /themes/hugo-academic/layouts/_default/baseof.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {{ partial "site_head" . }} 5 |
6 | 7 | {{ partial "search" . }} 8 | 9 | {{ partial "navbar" . }} 10 | 11 | {{ block "main" . }}{{ end }} 12 | 13 | {{ partial "site_js" . }} 14 | 15 | {{/* Docs and Updates layouts include the site footer in a different location. */}} 16 | {{ if not (in (slice "docs" "updates") .Type) }} 17 |{{ . | markdownify | emojify }}
{{ end }} 9 |{{ . | markdownify | emojify }}
{{ end }} 17 | {{ $st.Content }} 18 |{{. | plainify | emojify}}
{{end}}