order phenomena by count

pull/17/head
noerw 7 years ago
parent 0486a1d383
commit 790ce35a5a

@ -28,7 +28,9 @@ osem_phenomena = function (boxes) UseMethod('osem_phenomena')
#' names(phenoms[phenoms > 9])
#'
osem_phenomena.sensebox = function (boxes) {
Reduce(`c`, boxes$phenomena) %>% # get all the row contents in a single vector
p = Reduce(`c`, boxes$phenomena) %>% # get all the row contents in a single vector
table() %>% # get count for each phenomenon
as.list()
p[order(unlist(p), decreasing = T)]
}

Loading…
Cancel
Save