22
votes
7answers
1k 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 …
21
votes
15answers
834 views
Where can I find free and open data?
Sooner or later, coders will feel the need to have access to "open data" in one of their projects, from knowing a city's zip to a more obscure information such as the axial tilt of Pluto.
I know …
15
votes
13answers
1k views
Books for learning the R language
I'm looking for resources to start exploring the R language (as was recommended in my question on Statistical Tools). I know there are some suggestions for basic online tutorials in this thread, but …
15
votes
7answers
906 views
Algorithm for finding the maximum difference in an array of numbers
I have an array of a few million numbers.
double* const data = new double (3600000);
I need to iterate through the array and find the range (the largest value in the array minus the smallest …
14
votes
10answers
832 views
Workflow for statistical analysis and report writing
Does anyone have any wisdom on workflows for data analysis related to custom report writing? The use-case is basically this:
Client commissions a report that uses data analysis, e.g. a population …
10
votes
9answers
311 views
1 vs 1 vote: calculate ratings (Flickchart.com)
Instead of rating items with grades from 1 to 10, I would like to have 1 vs 1 "fights". Two items are displayed beside each other and you pick the one which you like more. Based on these "fight" …
10
votes
8answers
1k views
What is an Average that does not include outliers?
What do you call an Average that does not include outliers?
for example if you have a set:
{90,89,92,91,5} avg = 73.4
but excluding the outlier (5) we have
{90,89,92,91(,5)} avg = 90.5
How do …
9
votes
5answers
317 views
Choose random array element satisfying certain property
Suppose I have a list, called elements, each of which does or does not satisfy some boolean property p. I want to choose one of the elements that satisfies p by random with uniform distribution. I …
9
votes
7answers
275 views
What are some ways to have fun with a large amount of data? (ie, the Twitter, del.icio.us etc. APIs)
Twitter, Google, Amazon, del.icio.us etc. all give you a lot of data to play with, all for free. There's also a lot of textual data available through initiatives like Project Gutenberg. And that, it …
9
votes
10answers
463 views
How to find the one hour period with the most datapoints?
I have a database table with hundreds of thousands of forum posts, and I would like to find out what hour-long period contains the most number of posts.
I could crawl forward one minute at a time, …
9
votes
7answers
399 views
How to do Unit Testing with Uncertainties?
We have several different optimization algorithms that produce a different result for each run. For example the goal of the optimization could be to find the minimum of a function, where 0 is the …
9
votes
6answers
1k views
How many professional software developers are there worldwide?
I'd like to know the estimation for the supply of professional software developers globally, and, wherever it's possible, regionally.
Although weird, I hope this question to shed some light on the …
8
votes
4answers
497 views
Dynamic Programming: Sum-of-products
Let's say you have two lists, L1 and L2, of the same length, N. We define prodSum as:
def prodSum(L1, L2) :
ans = 0
for elem1, elem2 in zip(L1, L2) :
ans += elem1 * elem2
return …
8
votes
6answers
129 views
Benchmarking: When can I stop making measurements?
I have a series of functions that are all designed to do the same thing. The same inputs produce the same outputs, but the time that it takes to do them varies by function. I want to determine which …
8
votes
7answers
490 views
Realistic time estimates for progress bars etc.
I know I am not the only one who does not like progress bars or time estimates which give unrealistic estimates in software. Best examples are installers which jump from 0% to 90% in 10 seconds and …
