
Last chance! 50% off unlimited learning
Sale ends in
StrAbbr(x, minchar = 1, method = c("left", "fix"))
left
or fix
. While left
restricts the result to as many characters
are needed to ensure uniqueness, does fix
yield a vector with all the elements being as long, as
the the longest needabbreviate
, StrTrunc
, StrTrim
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")
Run the code above in your browser using DataLab