scale_x_sequnit: scale x by unit

View source: R/scales.R

scale_x_sequnitR Documentation

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'

Author(s)

Tengfei Yin

Examples

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")

tengfei/ggbio documentation built on Nov. 5, 2023, 6:17 a.m.