knitr::opts_chunk$set( echo = FALSE, message = FALSE, warning = FALSE )
library(intuthu) library(tidyverse) library(flextable)
iris %>% ggplot(aes(x = Sepal.Length, fill = Species)) + geom_bar() + scale_fill_sgdf_discrete() + labs(title = "Iris plot") + theme_sgdf()
iris %>% filter(Species == "setosa") %>% head(20) %>% flextable() %>% theme_flex_sgdf()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.