I've got Crosstable in which there is a vector of counts with matched factors as seen below.
I'd like make a plot of factors "0-7" "11-13.5" "13.5+" "7-9" ... with counts, but in a specific order like 0-7 first, then 7-9, 11-13.5 and so on...
How could this be done in a fast manner?
> str(data2) List of 4 $ t : int [1, 1:6] 3342 6954 6002 5150 4868 2776 ..- attr(*, "dimnames")=List of 2 .. ..$ : NULL .. ..$ : chr [1:6] "0-7" "11-13.5" "13.5+" "7-9" ...