Tagged Questions
The median is the 'middle' value from a set of values.
40
votes
8answers
5k views
Rolling median algorithm in C
I am currently working on an algorithm to implement a rolling median filter (analogous to a rolling mean filter) in C. From my search of the literature, there appear to be two reasonably efficient ...
25
votes
12answers
21k views
Function to Calculate Median in Sql Server
According to MSDN, Median is not available as an aggregate function in Transact-Sql. However, I would like to find out whether it is possible to create this functionality (using the Create Aggregate ...
21
votes
9answers
4k views
“On-line” (iterator) algorithms for estimating statistical median, mode, skewness, kurtosis?
Is there an algorithm to estimate the median, mode, skewness, and/or kurtosis of set of values, but that does NOT require storing all the values in memory at once?
I'd like to calculate the basic ...
17
votes
5answers
5k views
How do I find the median of numbers in linear time using heaps?
Wikipedia says:
Selection algorithms: Finding the min,
max, both the min and max, median, or
even the k-th largest element can be
done in linear time using heaps.
All it says is that it ...
17
votes
9answers
12k views
Simple way to calculate median with MySQL
What's the simplest (and hopefully not too slow) way to calculate the median with MySQL? I've used AVG(x) for finding the mean, but I'm having a hard time finding a simple way of calculating the ...
8
votes
5answers
589 views
Incremental median computation with max memory efficiency
I have a process that generates values and that I observe. When the process terminates, I want to compute the median of those values.
If I had to compute the mean, I could just store the sum and the ...
7
votes
4answers
469 views
How to calculate median of a Map<Int,Int>?
For a map where the key represents a number of a sequence and the value the count how often this number appeared in the squence, how would an implementation of an algorithm in java look like to ...
7
votes
4answers
2k views
How can I calculate the median and standard deviation of a bunch stream of numbers in Perl?
In our logfiles we store response times for the requests. What's the most efficient way to calculate the median response time, the "75/90/95% of requests were served in less than N time" numbers etc? ...
7
votes
9answers
8k views
Code to calculate “median of five” in C#
Note: Please don't interpret this as "homework question." This is just a thing I curious to know :)
The median of five is sometimes used as an exercise in algorithm design and is known to be ...
6
votes
3answers
746 views
scala median implementation
What's a fast implementation of median in scala?
This is what I found on rosetta code:
def median(s: Seq[Double]) =
{
val (lower, upper) = s.sortWith(_<_).splitAt(s.size / 2)
if ...
6
votes
2answers
9k views
Conditional median in MS Excel
I'm trying to calculate the conditional median of a chart that looks like this:
A | B
-------
x | 1
x | 1
x | 3
x |
y | 4
z | 5
I'm using MS Excel 2007. I am aware of the ...
5
votes
5answers
598 views
Add a Median Method to a List
I would like to override the List object in C# in order to add a Median method like Sum or Average. I already found this function:
public static decimal GetMedian(int[] array)
{
int[] tempArray = ...
5
votes
2answers
369 views
Number of Comparisons finding the median of 7 numbers
I can find the median with 12 comparisons. But I want to know the minimum number of comparisons and how to do it.
4
votes
3answers
95 views
comparing numbers to sort then get median value
Sorting five integers using bitwise or comparison operators can be achieved by first getting the highest number then the second highest then the third and so on.
Here is my code in getting the ...
4
votes
9answers
3k views
How to find k nearest neighbors to the median of n distinct numbers in O(n) time?
I can use the median of medians selection algorithm to find the median in O(n). Also, I know that after the algorithm is done, all the elements to the left of the median are less that the median and ...
4
votes
5answers
2k views
Memory-efficient way of computing the median of a large data set? [closed]
If one computer can only hold 1 million numbers, how to find out the median number from 100 million numbers?
3
votes
1answer
78 views
Rolling Median with subset building over time
I would like to compute a variant of rolling medians on my dataset that does build the subsets not by going k observerations to the front and back, but by taking all observations into account that are ...
3
votes
4answers
134 views
Generate numbers in R
In R, how can I generate N numbers that have a mean of X and a median of Y (at least close to).
Or perhaps more generally, is there an algorithm for this?
3
votes
1answer
270 views
Standard sorting networks for small values of n
I'm looking for a sorting network implementation of a 5-element sort, but since I couldn't find a good reference on SO, I'd like to ask for sorting networks for all small values of n, at least n=3 ...
3
votes
2answers
1k views
algorithm for nth_element
I have recently found out that there exists a method called nth_element in the STL. To quote the description:
Nth_element is similar to
partial_sort, in that it partially
orders a range of ...
3
votes
5answers
2k views
Compute Median of Values Stored In Vector - C++?
I'm a programming student, and for a project I'm working on, on of the things I have to do is compute the median value of a vector of int values. I'm to do this using only the sort function from the ...
3
votes
6answers
1k views
Fastest way of finding the middle value of a triple?
I've got the following scenario:
There are three ("pseudo" randomly chosen) int or float values which represent indices of an array. Now I'd like to compare the appropriate values from that array. ...
3
votes
2answers
887 views
How to do median splits within factor levels in R?
Here I make a new column to indicate whether myData is above or below its median
### MedianSplits based on Whole Data
#create some test data
...
2
votes
1answer
69 views
how to find median of 5 sorted list in O(logn) time?
Here is the question:
There are 5 sorted list A,B,C,D,E, which has the same length n. The question is to find an algorithm that can median of this 5 list in O(logn) time. I am thinking of a general ...
2
votes
1answer
73 views
Best VBA Approach in Access for Median of a Dataset
I am a novice in access and VBA. I have a function that I use to calculate the median. The current function acts as a Domain function and uses all data to calculate the median rather than the dataset ...
2
votes
1answer
63 views
Idiomatic method of finding the median of an ordinal in R
I need to find the median of an ordinal (i.e. ordered factor) in R.
I couldn't find a method in the standard library to do this, so I came up with the following clunky solution:
ordinal.median <- ...
2
votes
1answer
81 views
Calculating the median
I have following (exponential) values and want to calculate their median using R:
1.0584e+00
1.1618e+01
4.9097e+00
1.3595e+01
4.2209e+01
4.6901e-01
2.4911e+00
1.2441e+01
6.8128e+00
1.3581e+01
...
2
votes
2answers
97 views
SQL Query .. a little help with AVG and MEDIAN using DISTINCT and SUM
I have a query to get the total duration of phone usage for various users...
But I need to be able to work out distinct averages for their usage.. the problem being certain users share phones and I ...
2
votes
1answer
255 views
median filter vs. pseudomedian filter in matlab
Anyone knows why the pseudomedian filter is faster than the median filter?
I used medfilt2.m for median filtering and I implemented my own pseudomedian filter which is:
b = strel('square',3);
psmedIm ...
2
votes
1answer
190 views
Finding a median of a collection of values in c++ [closed]
Possible Duplicate:
Compute Median of Values Stored In Vector - C++?
I need to store a collection of values and then have the ability to calculate its median value.
What is the best ...
2
votes
2answers
306 views
Quicksort with median in O(n log n)
I don't really understand why we don't just always select the median element as the pivot. This can be done in O(n) and thus results in a total run time of O(n log n).
I just assume that probably ...
2
votes
3answers
379 views
Calculating the Median with Mysql
I'm having trouble with calculating the median of a list of values, not the average.
I found this article
Simple way to calculate median with MySQL
It has a reference to the following query which I ...
2
votes
2answers
631 views
C# Calculation of moving median of time series SortedList<DateTime, double> - improve performance?
I have a method that calculates the moving median value of a time series. Like a moving average, it use a fixed window or period (sometimes referred to as the look back period).
If the period is 10, ...
2
votes
4answers
524 views
Approximate median of an immutable array
I need to find a median value of an array of doubles (in Java) without modifying it (so selection is out) or allocating a lot of new memory. I also don't care to find the exact median, but within 10% ...
2
votes
2answers
911 views
Optimal median of medians selection - 3 element blocks vs 5 element blocks?
I'm working on a quicksort-variant implementation based on the Select algorithm for choosing a good pivot element. Conventional wisdom seems to be to divide the array into 5-element blocks, take the ...
2
votes
6answers
1k views
Median Algorithm in O(log n)
How can we remove the median of a set with time complexity O(log n)? Some idea?
2
votes
3answers
391 views
Compute median of column in SQL common table expression
In MSSQL2008, I am trying to compute the median of a column of numbers from a common table expression using the classic median query as follows:
WITH cte AS
(
SELECT number
FROM table
)
...
2
votes
1answer
612 views
How can I calculate data for a boxplot (quartiles, median) in a Rails app on Heroku? (Heroku uses Postgresql)
I'm trying to calculate the data needed to generate a box plot which means I need to figure out the 1st and 3rd Quartiles along with the median. I have found some solutions for doing it in Postgresql ...
1
vote
1answer
15 views
Explaining Solution to Previously Answered Post: Finding Median in MySQL
I need to calculate the median value in MySQL. I saw the solution here.
But, I didn't understand part of it. The solution provided enter code here is as follows:
SELECT x.val from data x, data y
...
1
vote
1answer
54 views
Median select algorithm - does it find the absolute median, or a “median of medians” close to the absolute median?
Section 9.3 in CLRS 3rd edition "Selection in worst-case linear time" talks about the "Select" algorithm (sometimes called the BFPRT algorithm due to Blum, Floyd, Pratt, Rivest, and Tarjan) for ...
1
vote
1answer
16 views
finding median in excel of difference of two rows
I have two rows in excel in two different sheets. Each row has 20 elements.
Now I need to find the median of difference of corresponding elements in these two rows.
And I want this output in just one ...
1
vote
1answer
36 views
Can someone please help me understand this matlab code about median filters?
function imOut = medianFilter(imIn,windowWidth)
if mod(windowWidth, 2 ) == 0
disp('Window has even size');
return
end
imageSize = size(imIn);
imOut = imIn;
...
1
vote
3answers
126 views
How to calculate exact median of a sorted array without holding the whole array and with constant space?
I need to read sorted array from input to awk/gawk and get median. I don't want to store the whole array and am trying to get constant space for the calculation.
Are you aware of any algorithm doing ...
1
vote
2answers
372 views
median of column with awk
How can I use AWK to compute the median of a column of numerical data?
I can think of a simple algorithm but I can't seem to program it:
what I have so far is sort | awk 'END{print NR}' and this ...
1
vote
2answers
446 views
Unsafe Median filter using C#
I m doing a project based on image processing and i needed to do median filtering for that.
I did it with unsafe way it took a long time to process (800*600 resolution)
is there a fast open source ...
1
vote
1answer
97 views
How to get median values when using WITH CUBE?
In a nutshell: when using WITH CUBE in MSSQL 2005, is there any way of directly calculating median values, preferably without using loops?
Some code:
CREATE TABLE #Example (
ID1 INT,
ID2 ...
1
vote
3answers
403 views
Compute median of up to 5 in Scala
So, while answering some other question I stumbled upon the necessity of computing the median of 5. Now, there's a similar question in another language, but I want a Scala algorithm for it, and I'm ...
1
vote
3answers
294 views
Calculate median for each subject with update on ties?
I have data which looks like this (this is test data for illustration):
test <- matrix(c(1, 1, 1, 2, 2, 2 , 529, 528, 528, 495, 525, 510,557, 535, 313,502,474, 487 ), nr=6, ...
1
vote
2answers
442 views
When to use geometric vs arithmetic mean?
So I guess this isn't technically a code question, but it's something that I'm sure will come up for other folks as well as myself while writing code, so hopefully it's still a good one to post on SO.
...
1
vote
2answers
509 views
Confused about definition of a 'median' when constructing a kd-Tree
Im trying to build a kd-tree for searching through a set of points, but am getting confused about the use of 'median' in the wikipedia article. For ease of use, the wikipedia article states the ...