GGbio {ggbio} | R Documentation |
a sub class of ggplot and gg class defined in ggplot2 package, used for ggbio specific methods.
GGbio(ggplot = NULL, data = NULL, fetchable = FALSE, blank = FALSE, ...)
ggplot |
a ggplot or gg object. |
data |
raw data |
fetchable |
logical value, default |
blank |
logical value, default |
... |
More properties passed to class like |
This class is defined to facilitate the ggbio-specific visualization
method, especially when using ggplot
to construct ggbio
supported object, that will return a ggbio class. And internals tricks
will help a lazy evaluation for following +
method.
a ggbio object.
Tengfei Yin
p1 <- qplot() g1 <- ggbio(p1) class(g1)