StrAbbr {DescTools} | R Documentation |
String Abbreviation
Description
Abbreviate a character vector. The function includes starting from the first character as many characters as there are needed to result in a vector of unique values.
Usage
StrAbbr(x, minchar = 1, method = c("left", "fix"))
Arguments
x |
character vector to be abbreviated |
minchar |
integer, minimal number of characters for the abbreviations. |
method |
one out of |
Value
The abbreviated strings.
Author(s)
Andri Signorell <andri@signorell.net>
See Also
Examples
StrAbbr(x=levels(d.pizza$driver), minchar=2)
StrAbbr(x=levels(d.pizza$driver), minchar=2, method="left")
StrAbbr(x=levels(d.pizza$driver), minchar=2, method="fix")
x <- c("Aaron", "Aaramis", "Berta", "Bello", "Claudia", "Cardinale", "Doretta", "Emilia")
StrAbbr(x, minchar=2, method="left")
StrAbbr(x, minchar=2, method="fix")
[Package DescTools version 0.99.55 Index]