make_perclab {stevemisc} | R Documentation |
Make Percentage Label for Proportion and Add Percentage Sign
Description
make_perclab()
takes a proportion, multiplies it by 100, optionally rounds it, and pastes a percentage sign next to it.
Usage
make_perclab(x, d = 2)
Arguments
x |
a numeric vector |
d |
digits to round. Defaults to 2. |
Details
This function is useful if you're modeling proportions in something like a bar chart (for which proportions are more flexible) but want to label each bar as a percentage. The function here is mostly cosmetic.
Value
The function takes a proportion, multiplies it by 100, (optionally) rounds it to a set decimal point, and pastes a percentage sign next to it.
Examples
x <- runif(100)
make_perclab(x)
[Package stevemisc version 1.7.0 Index]