Workshop 17.5: Reproducible Research Murray Logan 10 Mar 2019 # - - PowerPoint PPT Presentation

workshop 17 5 reproducible research
SMART_READER_LITE
LIVE PREVIEW

Workshop 17.5: Reproducible Research Murray Logan 10 Mar 2019 # - - PowerPoint PPT Presentation

Workshop 17.5: Reproducible Research Murray Logan 10 Mar 2019 # A Heading ## A sub heading **This** word is in emphasised. * An unordered list - sub-item Markdown Markdown is a simple markup language Designed to portray some


slide-1
SLIDE 1

Workshop 17.5: Reproducible Research

Murray Logan 10 Mar 2019

slide-2
SLIDE 2

Markdown

  • Markdown is a simple markup language
  • Designed to portray some structure in

plain text

# A Heading ## A sub heading **This** word is in emphasised. * An unordered list

  • sub-item
  • Universal conversion language
slide-3
SLIDE 3

Markdown and Pandoc

pandoc

example.md text, citations, tables, links figure.png references.bib example.html references fjgure example.tex example.pdf references fjgure

slide-4
SLIDE 4

Markdown and pandoc

Metadata

  • YAML
  • title: This is the title

author: D. Author date: 12-03-2019

  • utput: html_document

...

slide-5
SLIDE 5

Rmarkdown

  • Combination of R and markdown
  • title: This is the title
author: D. Author
  • Section 1
=========== Text with embedded R code ```R summary mean(rnorm(10)) ```

.Rmd

  • title: This is the title
author: D. Author
  • Section 1
=========== Text with embedded R code mean(rnorm(10)) ## 0.1838261

.md knit pandoc .docx .html .pdf L

AT

EX render

slide-6
SLIDE 6

Rmarkdown

slide-7
SLIDE 7

Rmarkdown

slide-8
SLIDE 8

Rmarkdown

Examples using Rstudio

https://github.com/pcinereus/Rmarkdown-examples.git