Description Usage Arguments Details Value Author(s) Examples
Pad a numeric vector with zeros so that each element in the vector either has 1) the same number of characters or 2) the same number of trailing decimal places.
1 |
vec |
The numeric vector to be padded |
num |
The maximum number of zeros that will be added. If |
side |
The side to which the zeros are added. |
For side = 'left'
, num
is the number of characters that each
element of the padded, output vector should have. If num = NULL
, the
largest number of characters that appears in the vector is chosen for
num
.
For side = 'right'
, num
is the number of decimal places to be
displayed. If num = NULL
, the number of decimals in the element with
the largest number of decimal places is used.
Note that vec
must be numeric when side = 'right'
. However,
vec
may be character when side = 'left'
.
Character vector with the leading (or trailing) elements padded with zeros.
Landon Sego
1 2 3 4 5 6 7 |
[1] "001" "010" "100"
[1] "0001" "0010" "0100"
[1] "1.200" "1.340" "1.399"
[1] "1.20000" "1.34000" "1.39900"
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.