set_signif_par {RSSthemes} | R Documentation |
Set Significance base R graphical parameters
Description
Set Significance base R graphical parameters
Usage
set_signif_par(
family = "Source Sans Pro",
adj = 0,
mar = c(5, 3, 3, 2.5),
bty = "n",
...
)
Arguments
family |
Font used for all text elements. Default "Source Sans Pro". |
adj |
Alignment of text for title. Default 0. |
mar |
Margins. Default |
bty |
Axis lines. Default "n". |
... |
Additional arguments passed to |
Value
Returns an invisible named list.
Examples
# save user's current par values that this function will change
oldpar <- par("family", "adj", "mar", "bty")
set_signif_par()
plot(1:4, 1:4, col=1:4, main = "Title")
par(oldpar)
[Package RSSthemes version 1.0.0 Index]