Description Usage Arguments Format Author(s) Examples
Sets/gets the default dictionary used to rename the axes/moderator variables in the functions of the package fplot
. The dictionaries are used to relabel variables (usually towards a fancier, more explicit formatting) that can be useful not to explicitly use the arguments xlab/ylab when exporting graphs. By setting the dictionary with setFplot_dict
, you can avoid providing the argument dict
in fplot
functions.
1 2 3 | setFplot_dict(dict)
getFplot_dict
|
dict |
A named character vector. E.g. to change my variable named "us_md" and "state" to (resp.) "$ miilion" and "U.S. state", then use |
An object of class function
of length 1.
Laurent Berge
1 2 3 | data(airquality)
setFplot_dict(c(Ozone = "Ozone (ppb)"))
plot_distr(Ozone ~ Month, airquality, weight.fun = mean)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.