├── .gitignore
├── LICENSE.md
├── R
└── build.R
├── README.Rmd
├── README.md
├── assets
└── css
│ └── conf-2020.css
├── communicate-rmd-workshop.Rproj
├── config.toml
├── config
└── _default
│ ├── languages.toml
│ ├── menus.toml
│ └── params.toml
├── content
├── about
│ ├── abstract.md
│ ├── conf.md
│ ├── index.md
│ ├── learning-objectives.md
│ └── three-questions.md
├── authors
│ ├── alison
│ │ ├── _index.md
│ │ └── avatar.jpg
│ └── emi
│ │ ├── _index.md
│ │ └── avatar.jpg
├── home
│ ├── hero.md
│ └── index.md
├── license.md
├── materials
│ ├── 01
│ │ ├── index.Rmd
│ │ └── index.html
│ ├── 02
│ │ ├── index.Rmd
│ │ └── index.html
│ ├── 03
│ │ ├── index.Rmd
│ │ └── index.html
│ ├── 04
│ │ ├── index.Rmd
│ │ └── index.html
│ ├── _index.md
│ └── prework
│ │ ├── featured.jpg
│ │ ├── index.Rmd
│ │ └── index.html
├── people
│ ├── index.md
│ └── people.md
└── schedule
│ └── index.md
├── data
├── fonts
│ ├── font1.toml
│ ├── font2.toml
│ ├── font3.toml
│ └── font4.toml
└── themes
│ ├── conf1.toml
│ ├── conf2.toml
│ ├── conf3.toml
│ ├── conf4.toml
│ ├── theme1.toml
│ ├── theme2.toml
│ ├── theme3.toml
│ └── theme4.toml
├── index.Rmd
├── layouts
└── partials
│ ├── li_compact.html
│ ├── li_list.html
│ ├── site_footer.html
│ └── widgets
│ ├── hero.html
│ └── people.html
├── netlify.toml
├── plan
└── resources.md
├── resources
└── _gen
│ ├── assets
│ ├── css
│ │ └── css
│ │ │ ├── academic-bundle-pre.css_d3f53f09220d597dac26fe7840c31fc9.content
│ │ │ ├── academic-bundle-pre.css_d3f53f09220d597dac26fe7840c31fc9.json
│ │ │ ├── academic.css_187be290e8222f6bb644052568a2fb6d.content
│ │ │ └── academic.css_187be290e8222f6bb644052568a2fb6d.json
│ ├── js
│ │ └── js
│ │ │ ├── academic-bundle-pre.js_d3f53f09220d597dac26fe7840c31fc9.content
│ │ │ ├── academic-bundle-pre.js_d3f53f09220d597dac26fe7840c31fc9.json
│ │ │ ├── academic.min.js_187be290e8222f6bb644052568a2fb6d.content
│ │ │ └── academic.min.js_187be290e8222f6bb644052568a2fb6d.json
│ └── scss
│ │ └── sass
│ │ ├── main.scss_5605ecb7fa3240a2f23d47aaede4565f.content
│ │ └── main.scss_5605ecb7fa3240a2f23d47aaede4565f.json
│ └── images
│ └── authors
│ ├── alison
│ ├── avatar_huf96626ec1be0123e11505e1dfd66d46e_271118_150x150_fill_q90_lanczos_center.jpg
│ └── avatar_huf96626ec1be0123e11505e1dfd66d46e_271118_250x250_fill_q90_lanczos_center.jpg
│ └── emi
│ ├── avatar_hu6b53dde7a680f39011e8492aa8335efe_9728_150x150_fill_q90_lanczos_center.jpg
│ └── avatar_hu6b53dde7a680f39011e8492aa8335efe_9728_250x250_fill_q90_lanczos_center.jpg
├── static
├── images
│ └── logos
│ │ ├── edu-color.eps
│ │ ├── edu-color.jpg
│ │ ├── edu-color.pdf
│ │ ├── edu-color.png
│ │ ├── edu-white.pdf
│ │ └── edu-white.png
├── img
│ ├── RStudio-Logo-Flat.png
│ ├── grevillea.jpg
│ ├── holger-link-_WpDP2QwJYY-unsplash.jpg
│ ├── icon-192.png
│ ├── icon-512.png
│ ├── icon.png
│ ├── manuka2.jpg
│ ├── protea-banner.png
│ ├── proteaceae.jpg
│ └── rstudio-edu-logo.png
└── slides
│ ├── 00-loop.Rmd
│ ├── 00-loop.html
│ ├── 01-basics.Rmd
│ ├── 01-basics.html
│ ├── 01-basics_files
│ └── figure-html
│ │ ├── unnamed-chunk-21-1.png
│ │ ├── unnamed-chunk-22-1.png
│ │ ├── unnamed-chunk-23-1.png
│ │ ├── unnamed-chunk-25-1.png
│ │ ├── unnamed-chunk-26-1.png
│ │ └── unnamed-chunk-27-1.png
│ ├── 02-advanced.Rmd
│ ├── 02-advanced.html
│ ├── 03-templates.Rmd
│ ├── 03-templates.html
│ ├── 04-collections.Rmd
│ ├── 04-collections.html
│ ├── 04-collections_files
│ └── figure-html
│ │ ├── unnamed-chunk-10-1.gif
│ │ ├── unnamed-chunk-11-1.gif
│ │ ├── unnamed-chunk-12-1.gif
│ │ ├── unnamed-chunk-2-1.gif
│ │ ├── unnamed-chunk-8-1.gif
│ │ └── unnamed-chunk-9-1.gif
│ ├── assets
│ ├── Lightbulb.png
│ ├── Live-code-orange.png
│ ├── Live-code-teal.png
│ ├── Live-code.png
│ ├── Your-turn-orange.png
│ ├── Your-turn-teal.png
│ ├── Your-turn.png
│ ├── css
│ │ ├── RStudio-Logo-Flat.png
│ │ ├── RStudio-Logo-White.png
│ │ ├── my-fonts.css
│ │ ├── my-theme.css
│ │ └── rstudio-edu-logo.png
│ ├── fyi.png
│ ├── header.html
│ ├── lightbulb-color.png
│ └── loop.html
│ ├── how-rmd-works.Rmd
│ ├── how-rmd-works.html
│ ├── images
│ ├── 01-blogdown-github.png
│ ├── 02-blogdown-clone.png
│ ├── 03-blogdown-build.png
│ ├── 04-blogdown-netlify.png
│ ├── Data.jpg
│ ├── Knit-to-html.jpg
│ ├── RStudio-Logo-White.png
│ ├── awesome-blogdown
│ │ ├── amber.png
│ │ ├── dan.png
│ │ ├── desiree.png
│ │ ├── dewey.png
│ │ ├── earo.png
│ │ ├── emi-showcase.gif
│ │ ├── joyce.png
│ │ ├── maya.png
│ │ ├── openscapes.png
│ │ └── therese.png
│ ├── blogdown-lifecycle
│ │ ├── Slide1.png
│ │ ├── Slide10.png
│ │ ├── Slide2.png
│ │ ├── Slide3.png
│ │ ├── Slide4.png
│ │ ├── Slide5.png
│ │ ├── Slide6.png
│ │ ├── Slide7.png
│ │ ├── Slide8.png
│ │ └── Slide9.png
│ ├── christopher-burns-215Fiqh6hRc-unsplash.jpg
│ ├── cloud-from-git.png
│ ├── cloud-from-https.png
│ ├── cloud-from-template.png
│ ├── deploy-to-netlify.png
│ ├── doc-base.jpg
│ ├── doc-care.jpg
│ ├── doc-dressup.jpg
│ ├── doc-fancy.jpg
│ ├── doc-hide.jpg
│ ├── doc-live.jpg
│ ├── doc-make.jpg
│ ├── doc-yours.jpg
│ ├── doll.png
│ ├── foil_rstudio.jpg
│ ├── grevillea.png
│ ├── haba-elise.jpg
│ ├── hello-red.jpg
│ ├── horst_here.png
│ ├── hugo-themes.gif
│ ├── hugo
│ │ ├── 1.png
│ │ ├── 10.png
│ │ ├── 11.png
│ │ ├── 12.png
│ │ ├── 13.png
│ │ ├── 2.png
│ │ ├── 3.png
│ │ ├── 4.png
│ │ ├── 5.png
│ │ ├── 6.png
│ │ ├── 7.png
│ │ ├── 8.png
│ │ └── 9.png
│ ├── joy-of-fp
│ │ ├── bakers_1.png
│ │ ├── bakers_2.png
│ │ ├── bakers_3.png
│ │ ├── bakers_4.png
│ │ ├── bakers_5.png
│ │ ├── bakers_6.png
│ │ ├── bakers_7.png
│ │ ├── bakers_8.png
│ │ ├── data_cowboy.png
│ │ ├── forloops.png
│ │ ├── map2_cupcakes.png
│ │ ├── map_frosting.png
│ │ ├── presenting_monster.png
│ │ └── purrr_cat.png
│ ├── knit-dropdown.png
│ ├── orchestra.jpg
│ ├── outputs.png
│ ├── ppt.png
│ ├── protea-banner.png
│ ├── proteaceae.jpg
│ ├── rmarkdown_wizards.png
│ ├── rmd-file.png
│ ├── rmd-nav.png
│ ├── rmdbase-formats.png
│ ├── rproj.png
│ ├── welliewishers
│ │ ├── Slide1.png
│ │ └── Slide2.png
│ └── word.png
│ ├── libs
│ ├── countdown
│ │ ├── countdown.css
│ │ ├── countdown.js
│ │ └── smb_stage_clear.mp3
│ └── remark-css
│ │ └── default.css
│ ├── what-is-rmd.Rmd
│ └── what-is-rmd.html
└── themes
└── hugo-academic
├── .editorconfig
├── .github
├── FUNDING.yml
└── PULL_REQUEST_TEMPLATE.md
├── .gitignore
├── LICENSE.md
├── README.md
├── academic.png
├── archetypes
├── 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
├── js
│ ├── academic-search.js
│ ├── academic.js
│ ├── algolia-search.js
│ ├── mathjax-config.js
│ └── vendor
│ │ └── bootstrap.min.js
└── sass
│ ├── 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
│ ├── 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
│ └── conf_2020.toml
├── i18n
│ └── languages.yaml
├── page_sharer.toml
├── publication_types.toml
└── themes
│ └── conf_2020.toml
├── demo.sh
├── 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
│ │ │ ├── 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
│ │ └── jupyter
│ │ │ ├── academic.ipynb
│ │ │ ├── academic_0_0.png
│ │ │ ├── featured.png
│ │ │ └── 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
└── static
│ └── img
│ ├── boards.jpg
│ ├── headers
│ └── bubbles-wide.jpg
│ └── hero-academic.png
├── i18n
├── ca.yaml
├── da.yaml
├── de.yaml
├── el.yaml
├── en.yaml
├── es.yaml
├── eu.yaml
├── fr.yaml
├── hu.yaml
├── id.yaml
├── it.yaml
├── ja.yaml
├── ko.yaml
├── nl.yaml
├── pl.yaml
├── pt.yaml
├── ro.yaml
├── ru.yaml
├── tr.yaml
├── vi.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
└── tn.png
├── layouts
├── 404.html
├── _default
│ ├── baseof.html
│ ├── list.html
│ ├── rss.xml
│ └── single.html
├── authors
│ ├── list.html
│ └── terms.html
├── docs
│ ├── list.html
│ └── single.html
├── index.html
├── index.json
├── partials
│ ├── citation.html
│ ├── comments.html
│ ├── cookie_consent.html
│ ├── custom_head.html
│ ├── custom_js.html
│ ├── docs_layout.html
│ ├── docs_sidebar.html
│ ├── docs_toc_foot.html
│ ├── functions
│ │ ├── get_pub_types.html
│ │ └── parse_theme.html
│ ├── li_card.html
│ ├── li_citation.html
│ ├── li_compact.html
│ ├── li_list.html
│ ├── navbar.html
│ ├── page_author.html
│ ├── page_header.html
│ ├── page_links.html
│ ├── page_links_div.html
│ ├── page_metadata.html
│ ├── page_metadata_authors.html
│ ├── pagination.html
│ ├── project_li_card.html
│ ├── project_li_list.html
│ ├── project_li_showcase.html
│ ├── search.html
│ ├── section_pager.html
│ ├── share.html
│ ├── site_footer.html
│ ├── site_head.html
│ ├── site_js.html
│ ├── slides.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
│ ├── list_categories.html
│ ├── list_tags.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
├── sync_i18n.py
└── update_bootstrap.sh
├── static
├── img
│ ├── icon-192.png
│ └── icon.png
├── js
│ └── vendor
│ │ └── reveal.js
│ │ └── plugin
│ │ └── notes
│ │ ├── notes.html
│ │ └── notes.js
└── site.webmanifest
└── theme.toml
/.gitignore:
--------------------------------------------------------------------------------
1 | .Rproj.user
2 | .Rhistory
3 | .RData
4 | .Ruserdata
5 | .DS_store
6 | public
7 | README.html
8 |
--------------------------------------------------------------------------------
/R/build.R:
--------------------------------------------------------------------------------
1 | blogdown::build_dir('static')
2 |
--------------------------------------------------------------------------------
/communicate-rmd-workshop.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 |
--------------------------------------------------------------------------------
/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 |
--------------------------------------------------------------------------------
/config/_default/menus.toml:
--------------------------------------------------------------------------------
1 | # Navigation Links
2 | # To link a homepage widget, specify the URL as a hash `#` followed by the filename of the
3 | # desired widget in your `content/home/` folder.
4 | # The weight parameter defines the order that the links will appear in.
5 |
6 | [[main]]
7 | name = "About"
8 | url = "about"
9 | weight = 10
10 | identifier = "about"
11 |
12 | [[main]]
13 | name = "Details"
14 | url = "about#conf"
15 | weight = 10
16 | parent = "about"
17 |
18 | [[main]]
19 | name = "Is this workshop for me?"
20 | url = "about#three-questions"
21 | weight = 20
22 | parent = "about"
23 |
24 | [[main]]
25 | name = "Overview"
26 | url = "about#abstract"
27 | weight = 30
28 | parent = "about"
29 |
30 | [[main]]
31 | name = "Schedule"
32 | url = "schedule"
33 | weight = 30
34 |
35 | [[main]]
36 | name = "Materials"
37 | url = "materials"
38 | weight = 40
39 |
40 | [[main]]
41 | name = "People"
42 | url = "people"
43 | weight = 50
44 |
45 | [[main]]
46 | pre = ""
47 | name = ""
48 | url = "https://bit.ly/ysc-rmarkdown"
49 | weight = 60
50 |
51 |
--------------------------------------------------------------------------------
/content/about/conf.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 = 10 # Order that this section will appear.
7 |
8 | title = "Details"
9 | subtitle = ""
10 |
11 | # Automatically link email and phone?
12 | autolink = false
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 = 0
19 |
20 | [design.background]
21 | # Apply a background color, gradient, or image.
22 | # Uncomment (by removing `#`) an option to apply it.
23 | # Choose a light or dark text color by setting `text_color_light`.
24 | # Any HTML color name or Hex value is valid.
25 |
26 | # Background color.
27 | # color = "navy"
28 |
29 | # Background image.
30 | image = "manuka2.jpg" # Name of image in `static/img/`.
31 | image_darken = 0.4 # Darken the image? Range 0-1 where 0 is transparent and 1 is opaque.
32 |
33 | # Text color (true=light or false=dark).
34 | text_color_light = true
35 |
36 | [design.spacing]
37 | # Customize the section spacing. Order is top, right, bottom, left.
38 | padding = ["2em", "0", "6em", "0"]
39 | +++
40 |
41 |
--------------------------------------------------------------------------------
/content/about/index.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: "About the workshop" # Add a page title.
3 | summary: "Abstract, learning objectives, and key questions for potential participants" # Add a page description.
4 | date: "2019-01-01T00:00:00Z" # Add today's date.
5 | type: "widget_page" # Page type is a Widget Page
6 | ---
7 |
--------------------------------------------------------------------------------
/content/about/learning-objectives.md:
--------------------------------------------------------------------------------
1 | +++
2 | # An Overview section created with the Blank widget.
3 | # Any elements can be added in the body: https://sourcethemes.com/academic/docs/writing-markdown-latex/
4 | # Add more sections by duplicating this file and customizing to your requirements.
5 |
6 | widget = "blank" # See https://sourcethemes.com/academic/docs/page-builder/
7 | headless = true # This file represents a page section.
8 | active = false # Activate this widget? true/false
9 | weight = 40 # Order that this section will appear.
10 |
11 | title = "Learning Objectives"
12 | subtitle = ""
13 |
14 | [design]
15 | # Choose how many columns the section has. Valid values: 1 or 2.
16 | columns = "2"
17 |
18 | [design.background]
19 | # Apply a background color, gradient, or image.
20 | # Uncomment (by removing `#`) an option to apply it.
21 | # Choose a light or dark text color by setting `text_color_light`.
22 | # Any HTML color name or Hex value is valid.
23 |
24 | # Background color.
25 | # color = "navy"
26 |
27 | # Background gradient.
28 | # gradient_start = "DeepSkyBlue"
29 | # gradient_end = "SkyBlue"
30 |
31 | # Background image.
32 | image = "" # Name of image in `static/img/`.
33 | image_darken = 0.6 # Darken the image? Range 0-1 where 0 is transparent and 1 is opaque.
34 |
35 | # Text color (true=light or false=dark).
36 | text_color_light = false
37 |
38 | [design.spacing]
39 | # Customize the section spacing. Order is top, right, bottom, left.
40 | padding = ["6em", "0", "10em", "0"]
41 |
42 | [advanced]
43 | # Custom CSS.
44 | css_style = "margin-top: -1em !important;"
45 |
46 | # CSS class.
47 | css_class = ""
48 | +++
49 |
50 | Participants will learn how to:
51 |
52 |
--------------------------------------------------------------------------------
/content/about/three-questions.md:
--------------------------------------------------------------------------------
1 | +++
2 | # A "Three Questions" section created with the Featurette widget.
3 | widget = "featurette" # 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.
7 |
8 | title = "Is this workshop for me?"
9 | subtitle = "This workshop will be appropriate for attendees who answer yes to these questions:"
10 |
11 | # Add/remove as many `[[feature]]` blocks below as you like.
12 | #
13 | # For available icons, see: https://sourcethemes.com/academic/docs/widgets/#icons
14 |
15 | [[feature]]
16 | icon = "github"
17 | icon_pack = "fab"
18 | name = ""
19 | description = "Have you heard of version control or GitHub and curious to learn more?"
20 |
21 | [[feature]]
22 | icon = "r-project"
23 | icon_pack = "fab"
24 | name = ""
25 | description = "Have you downloaded and used R? Can you install and load packages?"
26 |
27 | [[feature]]
28 | icon = "laptop-code"
29 | icon_pack = "fas"
30 | name = ""
31 | description = "Have you used R with the RStudio Integrated Development Environment (IDE)?
Can you send R code from a source file (`.R`, `.Rmd`) to the console?"
32 |
33 | [design.spacing]
34 | # Customize the section spacing. Order is top, right, bottom, left.
35 | padding = ["6em", "0", "0", "0"]
36 |
37 | [advanced]
38 | # Custom CSS.
39 | css_style = "margin-top: -1em !important;"
40 |
41 | +++
42 |
--------------------------------------------------------------------------------
/content/authors/alison/avatar.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rstudio-education/communicate-rmd-workshop/3b19af19dffe98f2f69b446b312649e77da0e732/content/authors/alison/avatar.jpg
--------------------------------------------------------------------------------
/content/authors/emi/_index.md:
--------------------------------------------------------------------------------
1 | ---
2 | authors:
3 | - admin
4 | bio: I am a statistics academic.
5 | education:
6 | courses:
7 | - course: PhD in Statistics
8 | institution: The University of Sydney
9 | year: 2015
10 | email: "dr.emi.tanaka@gmail.com"
11 | interests:
12 | - Applied Statistics
13 | - Biometrics
14 | - Bioinformatics
15 | - Data Visualisation
16 | - Experimental Design
17 | - Quantitative Genetics
18 | - Statistical Modelling
19 | name: Emi Tanaka
20 | organizations:
21 | - name: The University of Sydney (soon Monash University)
22 | url: "https://emitanaka.org/"
23 | role: Lecturer
24 | social:
25 | - icon: twitter
26 | icon_pack: fab
27 | link: https://twitter.com/statsgen
28 | - icon: github
29 | icon_pack: fab
30 | link: https://github.com/emitanaka
31 | user_groups:
32 | - Teaching Assistants
33 | ---
34 |
35 | I wanted to be a comic artist but I came first in mathematics in high school so I figured my maths skills wasn't bad. I can't say the same for my drawing skills. I was realistic and chose to major in mathematics and statistics at uni. I managed to get accepted to do honours then got a PhD scholarship offer. Lucky for me offers kept on rolling in and somehow I made it as a tenured/permanent position at Monash, where a group of people I admire work. Once I pass probation, I'm going to draw more (don't tell my head of department). Currently, looking more into R internals and grid package so I can draw with code. It's hard.
36 |
37 | Enjoys: drawing and coding.
38 |
--------------------------------------------------------------------------------
/content/authors/emi/avatar.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rstudio-education/communicate-rmd-workshop/3b19af19dffe98f2f69b446b312649e77da0e732/content/authors/emi/avatar.jpg
--------------------------------------------------------------------------------
/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/materials/01/index.Rmd:
--------------------------------------------------------------------------------
1 | ---
2 | title: 'Session 01: R Markdown Basics'
3 | draft: false
4 | event: 'Young Statisticians Conference 2019'
5 | event_url: https://ysc2019.netlify.com/#workshop
6 | location: Canberra, Australia
7 |
8 | # Talk start and end times.
9 | # End time can optionally be hidden by prefixing the line with `#`.
10 | date: "2019-09-30T08:00:00Z"
11 | #date_end: "2019-10-02T12:00:00Z"
12 | all_day: true
13 | publishdate: "2019-06-15"
14 |
15 | links:
16 | - icon: images
17 | icon_pack: fas
18 | name: slides
19 | url: /slides/01-basics.html
20 |
21 | lastmod: '2019-06-16T02:20:01-07:00'
22 | projects: []
23 | weight: 2
24 | ---
25 |
26 | ```{r echo=FALSE}
27 | knitr::include_url("/slides/01-basics.html")
28 | ```
29 |
30 |
--------------------------------------------------------------------------------
/content/materials/01/index.html:
--------------------------------------------------------------------------------
1 | ---
2 | title: 'Session 01: R Markdown Basics'
3 | draft: false
4 | event: 'Young Statisticians Conference 2019'
5 | event_url: https://ysc2019.netlify.com/#workshop
6 | location: Canberra, Australia
7 |
8 | # Talk start and end times.
9 | # End time can optionally be hidden by prefixing the line with `#`.
10 | date: "2019-09-30T08:00:00Z"
11 | #date_end: "2019-10-02T12:00:00Z"
12 | all_day: true
13 | publishdate: "2019-06-15"
14 |
15 | links:
16 | - icon: images
17 | icon_pack: fas
18 | name: slides
19 | url: /slides/01-basics.html
20 |
21 | lastmod: '2019-06-16T02:20:01-07:00'
22 | projects: []
23 | weight: 2
24 | ---
25 |
26 |
27 |
28 |
30 |
--------------------------------------------------------------------------------
/content/materials/02/index.Rmd:
--------------------------------------------------------------------------------
1 | ---
2 | title: 'Session 02: Advanced R Markdown'
3 | draft: false
4 | event: 'Young Statisticians Conference 2019'
5 | event_url: https://ysc2019.netlify.com/#workshop
6 | location: Canberra, Australia
7 | categories: [slides]
8 | tags: []
9 | lastmod: '2019-08-29T11:21:55-07:00'
10 | featured: no
11 | image:
12 | caption: "[Proteaceæ image](https://www.c82.net/twining/plants/?id=118) by Nicholas Rougeux, CC-BY-SA"
13 | focal_point: 'center'
14 | preview_only: yes
15 | projects: []
16 | weight: 3
17 | links:
18 | - icon: images
19 | icon_pack: fas
20 | name: slides
21 | url: /slides/02-advanced.html
22 | ---
23 |
24 |
25 | ```{r echo=FALSE}
26 | knitr::include_url("/slides/02-advanced.html")
27 | ```
28 |
29 | # Topics
30 |
31 | + Parameterized reports
32 | + R Markdown from the command line
33 | + Version controlled projects
34 | + Extension formats
35 |
--------------------------------------------------------------------------------
/content/materials/02/index.html:
--------------------------------------------------------------------------------
1 | ---
2 | title: 'Session 02: Advanced R Markdown'
3 | draft: false
4 | event: 'Young Statisticians Conference 2019'
5 | event_url: https://ysc2019.netlify.com/#workshop
6 | location: Canberra, Australia
7 | categories: [slides]
8 | tags: []
9 | lastmod: '2019-08-29T11:21:55-07:00'
10 | featured: no
11 | image:
12 | caption: "[Proteaceæ image](https://www.c82.net/twining/plants/?id=118) by Nicholas Rougeux, CC-BY-SA"
13 | focal_point: 'center'
14 | preview_only: yes
15 | projects: []
16 | weight: 3
17 | links:
18 | - icon: images
19 | icon_pack: fas
20 | name: slides
21 | url: /slides/02-advanced.html
22 | ---
23 |
24 |
25 |
26 |
28 |
{{ i18n "404_recommendations" }}
17 | 18 | {{ $query := site.RegularPages }} 19 | {{ $count := len $query }} 20 | {{ if gt $count 0 }} 21 |{{ partial "page_links" (dict "page" . "is_list" 1) }}
18 | 19 | {{/* MLA Style */}} 20 | {{ else }} 21 | 22 | . 25 | {{ .Title }}. 26 | {{ if .Params.publication_short }} 27 | {{- .Params.publication_short | markdownify -}}, 28 | {{ else if .Params.publication }} 29 | {{- .Params.publication | markdownify -}}, 30 | {{ end }} 31 | {{- .Date.Format "2006" -}}. 32 |{{ partial "page_links" (dict "page" . "is_list" 1) }}
33 | 34 | {{ end }} 35 |{{ . | markdownify | emojify }}
{{ end }} 22 |{{ . | markdownify | emojify }}
{{ end }} 15 |