knitr::opts_chunk$set(echo = FALSE)
library(minterbrand)
minter_ggplot_theme_update()

R Markdown

These are **Presenter Notes**. - They can contain markdown - Check out **RStudio's** [tips](http://rmarkdown.rstudio.com/ioslides_presentation_format.html)

Slide text goes here.

2 Column Slide with Image and Bullets

wzxhzdk:1 - Bullet 1 - Bullet 2 - Bullet 3

Slide with R Output

summary(cars)

Slide with Plot

plot(pressure)

Slide with ggplot

plt <- ggplot(pressure, aes(x=temperature)) +
              geom_point(aes(y=pressure)) +
              geom_line(aes(x=temperature,
                            y=pressure),
                        color = 'blue') +
              ggtitle("Pressure as f(temperature)") +
              theme(axis.text=element_text(size=12),
                    axis.title=element_text(size=14),
                    plot.title = element_text(hjust = 0.5)) # center the title

print(plt)

Slide with ordered list

  1. AA

  2. BB

Slide with Columns

1 one
2 two
3 three
4 four



jrminter/minterbrand documentation built on May 26, 2019, 5:41 p.m.