#' ggplot2: Flip y axis title
#'
#' @description The y axis title with a horizontal rotation.
#'
#' @return A ggplot2 object.
#'
#' @export
#'
#' @examples
#' library(ggplot2)
#'
#' plot <-
#' ggplot(mtcars,aes(hp,drat))+
#' geom_point()
#'
#' plot
#'
#' plot + plt_flip_y_title
#'
plt_flip_y_title <-
ggplot2::theme(axis.title.y = ggplot2::element_text(hjust = 1, angle = 360))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.