df <- as.data.frame(c("15-25", "0-4", "5-10", "11-14", "100+"))
How do I sort is to 0-4 comes first and 100+ last? Dplyr solution would be nice, arrange does not work for me.
df <- as.data.frame(c("15-25", "0-4", "5-10", "11-14", "100+"))
How do I sort is to 0-4 comes first and 100+ last? Dplyr solution would be nice, arrange does not work for me.