knitr::opts_chunk$set( echo = FALSE, warning = FALSE, message = FALSE)
library(mnbrand) library(flextable)
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.
library(ggplot2) mtcars %>% ggplot(aes(x = mpg, y = hp, color = as.factor(carb))) + geom_point(size = 4) + scale_color_mn_d() + theme_minimal()
mtcars %>% head() %>% flextable() %>% theme_ft_mn( color = "blue", fontsize = 20, borders = "thick") %>% autofit()
:::::::::::::: {.columns} ::: {.column} Info in the right column ::: ::: {.column} Info in the left column ::: ::::::::::::::
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.