#'A bar chart
#'The function creates a bar chart rapresenting the mother'sweight in pounds at last menstrual period
#'
#' @return
#' @export
plot2 <- function(){
birthwt <- MASS::birthwt
p <- ggplot2::qplot(x = lwt, data = birthwt, geom = "bar")
return(p)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.