#' Plot iris data
#' @param x column that you want to plot
#' @param color color of the bars
#'
#' @return data visualization
plot_iris <- function(dt, color){
ggplot(dt, aes(x=Sepal.Width, fill=color)) +
geom_bar()
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.