ggbio (version 1.20.0)

scale_x_sequnit: scale x by unit

Description

scale x by unit 'Mb','kb', 'bp'.

Usage

scale_x_sequnit(unit = c("Mb", "kb", "bp"), append = NULL)

Arguments

unit
unit to scale x. Default is Mb.
append
default NULL. If pass a character, it disalbe unit and arbitrarily append a text behind the original x scale numbers.

Value

'position_c'

Examples

Run this code
library(ggplot2)
p <- qplot(x = seq(1, to = 10000, length.out = 40), y = rnorm(40), geom
= "point")
## default mb
p + scale_x_sequnit()
p + scale_x_sequnit("kb")
p + scale_x_sequnit("bp")

Run the code above in your browser using DataCamp Workspace