Creates numerical strings with given lengths by removing additional characters from the back and adding leading zeros if necessary.
pretty_numbers(v, length_final = 5, remove_from_back = 4)
vector, with characters formatted accordingly.
vector, integer or sting vector with numerical values.
numeric, the length of the final string. Defaults to 5 for zip code conversions.
numeric, the number of digits to remove from the back of the string. If NULL, then removes characters from back more than specified in length_final. Defaults to 4 for zip code conversions by removing the add-on codes.