Description Usage Arguments Author(s) See Also Examples
View source: R/order_quasinum.R
A function to order 'quasinumerical' (i.e. categorical with values such as "15-30" or "<18") integer vectors into increasing order. Currently handles away the following non-numerical characters "-", ">", "<", ">=", "<=", "+".
1 |
x |
character vector with 'quasinumerical' values |
Tommi Karki
Used in getAgeGender
and plotAgeGender
/ plotAge
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | age1 <- c("<1", "1-15", "16-25", ">65", "26-65")
age2 <- c("0-4", "5-10", ">65", "25-64", "11-25")
age3 <- c("5-10", ">65", "25-64", "11-25", "<=4")
age4 <- c(">=65", "<18", "18-64")
age5 <- c("5-10", "+65", "25-64", "11-25", "0-4")
age1
orderQuasinum(age1)
age2
orderQuasinum(age2)
age3
orderQuasinum(age3)
age4
orderQuasinum(age4)
age5
orderQuasinum(age5)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.