position_logo: Logo positioning for overlapping objects on top of one...

Description Usage See Also Examples

View source: R/position.r

Description

position_classic is stacking objects in an ordered fashion from largest to smallest element, position_logo reverses the classic order and additionally shifts stacks downward to align the largest objects along their vertical minimum, position_fill additionally standardises each stack to have unit height.

Usage

1
2
3

See Also

See geom_logo for more examples.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
library(ggplot2)
data(sequences)

# to make the most of comparisons, largest letters ar aligned along their minimum to
# work out the main sequence.
ggplot(data = ggfortify(sequences, peptide, treatment = class)) +
  (aes(x = class, y = bits, fill = Water, label = element), position="logo") + 
  facet_wrap(~position)

# in the classic logo plots letters are stacked in an ordered fasahion on top of each other
ggplot(data = ggfortify(sequences, peptide, treatment = class)) +
  (aes(x = class, y = bits, fill = Water, label = element), position="classic") + 
  facet_wrap(~position)

gglogo documentation built on Jan. 29, 2020, 1:09 a.m.