formatLongLabel: Format a variable with long labels
Description
This function formats a variable with long labels by wrapping
its elements into multiple lines.
Usage
formatLongLabel(x, width = 20)
Value
Vector with formatted labels
Arguments
- x
character vector with labels to format
- width
target maximum size. Note: a word
longer that this width won't be split (see strwrap
).
Author
Laure Cougnaud
longLabel <- "This is a very long description of the variable in the dataset"
cat(longLabel)
cat(formatLongLabel(longLabel))