AngenieuxDecoration.RdR6 Class for describing additional Angenieux decorations
R6 Class for describing additional Angenieux decorations
floundeR::FloundeR -> AngenieuxDecoration
decorationThis field contains the decoration that will be applied to the Angenieux object
new()This is the constructor for the AngenieuxDecoration object
AngenieuxDecoration$new(decoration_type, ...)
decoration_typeThis field is used to specify the type of decoration; the cleanest type
at the moment is currently the ggplot2 type.
...the other variables passed on to methods contained within the object
.add_vline()Add a vertical line to a ggplot2 graph within Angenieux
AngenieuxDecoration$.add_vline(xintercept, colour = "green", size = 1)
xinterceptthe point at which the vertical line will intercept the x-axis
colourthe colour of the line
sizethe width of the line (default 1)
.add_vlegend()Add a legend text to accompany a vertical line
AngenieuxDecoration$.add_vlegend( xintercept, colour = "green", legend = "", hjust = 0, vjust = 1, size = 6 )
xinterceptthe point at which the vertical line will intercept the x-axis
colourthe colour of the line
legendthe text to display at the given location
hjusthorizonal justify (0=left, 1=right)
vjustvertical justify (0=bottom, 1=top)
sizethe size of the font to present at the given location
.add_ggplot2()Just add some plain ggplot2 to the AngenieuxDecoration and layer on to
the Angenieux plot - this is for the lazy hacking out and visualisation
of plots
AngenieuxDecoration$.add_ggplot2(facet)
facetthe stuff to be layered onto the graph
clone()The objects of this class are cloneable with this method.
AngenieuxDecoration$clone(deep = FALSE)
deepWhether to make a deep clone.