xgxr (version 1.0.0)

xgx_scale_y_reverselog10: Reverselog transform for the y scale.

Description

xgx_scale_y_reverselog10 is designed to be used with data that approaches 100 A common example is receptor occupancy in drug development. It is used when you want even spacing between 90, 99, 99.9, etc.

Usage

xgx_scale_y_reverselog10(...)

Arguments

...

other parameters passed to scale_y_continuous

Value

ggplot2 compatible scale object

Examples

Run this code
# NOT RUN {
 
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(x = concentration, y = bound_receptor)) + 
ggplot2::geom_point() + 
  ggplot2::geom_line() + 
  xgx_scale_x_log10() +
  xgx_scale_y_reverselog10()
 
# }

Run the code above in your browser using DataLab