Skip to contents

linkSet-theme

Usage

theme_linkset(x.range, margin.len, show.rect)

theme_range(x.range, show.rect)

Arguments

x.range

A numeric vector specifying the x-axis range.

margin.len

A numeric value specifying the margin length.

show.rect

A logical value indicating whether to show the rectangle.

Examples

data(linkExample)
x.range <- c(0, 100)
margin.len <- 0.5
show.rect <- TRUE
p <- ggplot2::ggplot() + theme_linkset(x.range, margin.len, show.rect)
print(p)

data(linkExample)
x.range <- c(0, 100)
show.rect <- TRUE
p <- ggplot2::ggplot() + theme_range(x.range, show.rect)
print(p)