I use emacs-calc through an org-mode spreadsheet, and I would like to count the number of values ββin a column that are greater than a certain value (say 10).
I am currently using emacs-calc for calculations, but if there is a solution in emacs-lisp, it would be very nice!
I know that vcount will count the number of values ββin a vector, but it will count all the values ββin this vector. How can I add a condition to count only values> 10?
In other words, I would like the mysterious_function to return 2 in this case:
mysterious_function([2,14,11,3,9,1])
source share