genPlotTitleCmd {rattle} | R Documentation |
Generate a string to add a title to a plot
Description
Generate a string that is intended to be eval
'd that
will add a title and sub-title to a plot. The string is a call to
title
, supplying the given arguments,
paste
d together, as the main title, and generating a
sub-title that begins with ‘Rattle’ and continues with the current date
and time, and finishes with the current user's username. This is used
internally in Rattle to adorn a plot with relevant information, but
may be useful outside of Rattle.
Usage
genPlotTitleCmd(..., vector=FALSE)
Arguments
... |
one or more strings that will be pasted together to form the main title. |
vector |
whether to return a vector as the result. |
Author(s)
References
Package home page: https://rattle.togaware.com
See Also
Examples
# generate some random plot
plot(rnorm(100))
# generate the string representing the command to add titles
tl <- genPlotTitleCmd("Sample Plot of", "No Particular Importance")
# cause the string to be executed as an R command
eval(parse(text=tl))
[Package rattle version 5.5.1 Index]