Function to translate multipliers
This function translates number to character name or vice versa
translateUnit(vec)
vec |
The vector containing name or number to be translated |
## Create numeric vector myUnit = c(1000, 1e6, 1000, 1e9, 1e9, 1e12) ## Translate numeric to character myUnit2 = translateUnit(myUnit) myUnit2 ## Now translate back translateUnit(myUnit2)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.