R/labs.R

Defines functions labs_xy_null

Documented in labs_xy_null

#' Set x and y labels to \code{NULL}
#'
#' @description Sets the x and y labels to \code{NULL}.
#' @details None.
#' @return gg object.
#' @export
labs_xy_null <-
  function() {
    ggplot2::labs(x = NULL, y = NULL)
  }
tonyelhabr/teplot documentation built on May 26, 2019, 5:33 a.m.