R/theme_xgx.R

Defines functions theme_xgx

Documented in theme_xgx

#' Calls the standard theme for xGx graphics
#'
#' @return xgx ggplot2 compatible theme
#' 
#' @examples 
#' conc <- 10^(seq(-3, 3, by = 0.1))
#' ec50 <- 1
#' data <- data.frame(concentration = conc, 
#'                    bound_receptor = 1 * conc / (conc + ec50))
#' ggplot2::ggplot(data, ggplot2::aes(y = concentration, x = bound_receptor)) +
#'   ggplot2::geom_point() +
#'   ggplot2::geom_line() +
#'   xgx_scale_y_log10() +
#'   xgx_scale_x_reverselog10() +
#'   theme_xgx()
#'   
#' @export
theme_xgx <- function() {
  xgx_theme()
}
Novartis/xgxr documentation built on Oct. 20, 2023, 4:35 a.m.