From 16bcd27ef288de6d82da15bc7cb5910bd33f1d0b Mon Sep 17 00:00:00 2001 From: brdauria Date: Fri, 22 Mar 2019 10:43:44 +0100 Subject: [PATCH] created _slides_ folder and some sample slides --- .gitignore | 4 + codingclubuc3m_talk.Rproj | 13 + slides/slides.Rmd | 35 + slides/slides.html | 3177 +++++++++++++++++++++++++++++++++++++ 4 files changed, 3229 insertions(+) create mode 100644 .gitignore create mode 100644 codingclubuc3m_talk.Rproj create mode 100644 slides/slides.Rmd create mode 100644 slides/slides.html diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5b6a065 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +.Rproj.user +.Rhistory +.RData +.Ruserdata diff --git a/codingclubuc3m_talk.Rproj b/codingclubuc3m_talk.Rproj new file mode 100644 index 0000000..8e3c2eb --- /dev/null +++ b/codingclubuc3m_talk.Rproj @@ -0,0 +1,13 @@ +Version: 1.0 + +RestoreWorkspace: Default +SaveWorkspace: Default +AlwaysSaveHistory: Default + +EnableCodeIndexing: Yes +UseSpacesForTab: Yes +NumSpacesForTab: 2 +Encoding: UTF-8 + +RnwWeave: Sweave +LaTeX: pdfLaTeX diff --git a/slides/slides.Rmd b/slides/slides.Rmd new file mode 100644 index 0000000..dc7c64a --- /dev/null +++ b/slides/slides.Rmd @@ -0,0 +1,35 @@ +--- +title: "Blogging with R" +author: "Bernardo D'Auria" +date: "3/22/2019" +output: ioslides_presentation +--- + +```{r setup, include=FALSE} +knitr::opts_chunk$set(echo = FALSE) +``` + +## R Markdown + +This is an R Markdown presentation. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see . + +When you click the **Knit** button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document. + +## Slide with Bullets + +- Bullet 1 +- Bullet 2 +- Bullet 3 + +## Slide with R Output + +```{r cars, echo = TRUE} +summary(cars) +``` + +## Slide with Plot + +```{r pressure} +plot(pressure) +``` + diff --git a/slides/slides.html b/slides/slides.html new file mode 100644 index 0000000..ff2e92a --- /dev/null +++ b/slides/slides.html @@ -0,0 +1,3177 @@ + + + + Blogging with R + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

+

+

+

3/22/2019

+
+
+ +

R Markdown

+ +

This is an R Markdown presentation. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see http://rmarkdown.rstudio.com.

+ +

When you click the Knit button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document.

+ +

Slide with Bullets

+ +
    +
  • Bullet 1
  • +
  • Bullet 2
  • +
  • Bullet 3
  • +
+ +

Slide with R Output

+ +
summary(cars)
+ +
##      speed           dist       
+##  Min.   : 4.0   Min.   :  2.00  
+##  1st Qu.:12.0   1st Qu.: 26.00  
+##  Median :15.0   Median : 36.00  
+##  Mean   :15.4   Mean   : 42.98  
+##  3rd Qu.:19.0   3rd Qu.: 56.00  
+##  Max.   :25.0   Max.   :120.00
+ +

Slide with Plot

+ +

+ + + + +
+ + + + + + + + +