print.ggproto {ggplot2} | R Documentation |
Format or print a ggproto object
Description
If a ggproto object has a $print
method, this will call that method.
Otherwise, it will print out the members of the object, and optionally, the
members of the inherited objects.
Usage
## S3 method for class 'ggproto'
print(x, ..., flat = TRUE)
## S3 method for class 'ggproto'
format(x, ..., flat = TRUE)
Arguments
x |
A ggproto object to print. |
... |
If the ggproto object has a |
flat |
If |
Examples
Dog <- ggproto(
print = function(self, n) {
cat("Woof!\n")
}
)
Dog
cat(format(Dog), "\n")
[Package ggplot2 version 3.5.1 Index]