Skip to content

Commit

Permalink
created _slides_ folder and some sample slides
Browse files Browse the repository at this point in the history
  • Loading branch information
brdauria committed Mar 22, 2019
1 parent 7a91c8f commit 16bcd27
Show file tree
Hide file tree
Showing 4 changed files with 3,229 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.Rproj.user
.Rhistory
.RData
.Ruserdata
13 changes: 13 additions & 0 deletions codingclubuc3m_talk.Rproj
Original file line number Diff line number Diff line change
@@ -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
35 changes: 35 additions & 0 deletions slides/slides.Rmd
Original file line number Diff line number Diff line change
@@ -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 <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

```{r cars, echo = TRUE}
summary(cars)
```

## Slide with Plot

```{r pressure}
plot(pressure)
```

3,177 changes: 3,177 additions & 0 deletions slides/slides.html

Large diffs are not rendered by default.

0 comments on commit 16bcd27

Please sign in to comment.