knitr::opts_chunk$set(
    echo = FALSE,
    warning = FALSE,
    message = FALSE)
library(mnbrand)
library(flextable)

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

Slide with ggplot

library(ggplot2)

mtcars %>%
  ggplot(aes(x = mpg, y = hp, color = as.factor(carb))) +
  geom_point(size = 4) +
  scale_color_mn_d() +
  theme_minimal()

Slide with flextable

mtcars %>% 
    head() %>% 
    flextable() %>% 
    theme_ft_mn(
        color = "blue",
        fontsize = 20,
        borders = "thick") %>% 
    autofit()

Slide with Two Columns

:::::::::::::: {.columns} ::: {.column} Info in the right column ::: ::: {.column} Info in the left column ::: ::::::::::::::



jfangmeier/mnproject documentation built on Feb. 3, 2022, 7:21 p.m.