knitr::opts_chunk$set(echo = TRUE)
library(ggplot2) library(tibble) library(dplyr) tibble(x = 1:3, y = 2:4) %>% ggplot(aes(x, y)) + geom_point()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.