Description Usage Arguments Value See Also Examples
This function is a tool for easily specifying the visuals
argument of
makeDataReport
. Note that only a single visual function can
be provided for each variable type. If more than one is supplied, only
the first one is used. The default is to use a single visual function for all
variable types (as specified in the argument all
), but class-specific choices
of visual functions can also be used. Note that class-specific arguments overwrites
the contents of all
. Note that all available visual function options can be inspected
by calling allVisualFunctions()
.
1 2 3 4 5 6 7 8 9 10 11 |
character |
A function name (character string) to be used as the visual function for character
variables. If |
factor |
A function name (character string) to be used as the visual function for factor
variables. If |
labelled |
A function name (character string) to be used as the visual function for labelled
variables. If |
haven_labelled |
A function name (character string) to be used as the visual function for haven_labelled
variables. If |
numeric |
A function name (character string) to be used as the visual function for numeric
variables. If |
integer |
A function name (character string) to be used as the visual function for integer
variables. If |
logical |
A function name (character string) to be used as the visual function for logical
variables. If |
Date |
A function name (character string) to be used as the visual function for Date
variables. If |
all |
A function name (character string) to be used as the visual function for all variables. |
A list with one entry for each data class supported by makeDataReport
. Each
entry then contains a character string with a function name that is to be called as the visual
function for that variable type.
makeDataReport
, allVisualFunctions
1 2 3 4 5 6 7 8 9 | #Set visual type to basicVisual for all variable types:
setVisuals(all = "basicVisual")
#Used in a call to makeDataReport():
data(toyData)
makeDataReport(toyData, visuals = setVisuals(all = "basicVisual"), replace = TRUE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.