I want to find the median value of a column in the Results table. I am pulling the column out as an array using :
Table.getColumn (Column);
So now I just need to know how to find the median value of this array. I know that:
Array.getStatistics(array, min, max, mean, stdDev)
can return other summary statistics, but it doesn't have median for some reason.
I am struggling to find any sort of median function. Does anyone have any idea?
Cross-posted from Reddit and Image.sc Forum
The OP got an answer on image.sc which I am copying below for others searching for an answer to this question.