mirror of
https://github.com/sensebox/opensensmapr
synced 2025-06-09 20:06:10 +02:00
order phenomena by count
This commit is contained in:
parent
0486a1d383
commit
790ce35a5a
1 changed files with 3 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue