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