Tagged Questions
Statistics is the mathematical study of using probability to infer characteristics of a population from a limited number of samples or observations.
147
votes
15answers
7k views
What statistics should a programmer (or computer scientist) know?
I'm a programmer with a decent background in math and computer science. I've studied computability, graph theory, linear algebra, abstract algebra, algorithms, and a little probability and statistics ...
122
votes
10answers
3k views
Cosmic Rays: what is the probability they will affect a program?
Once again I was in a design review, and encountered the claim that the probability of a particular scenario was "less than the risk of cosmic rays" affecting the program, and it occurred to me that I ...
54
votes
12answers
7k 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 ...
54
votes
17answers
17k views
Books for learning the R language [closed]
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 ...
45
votes
7answers
1k views
Sorting algorithms for data of known statistical distribution?
It just occurred to me, if you know something about the distribution (in the statistical sense) of the data to sort, the performance of a sorting algorithm might benefit if you take that information ...
42
votes
19answers
2k 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 ...
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 ...
27
votes
16answers
3k views
Datasets for Running Statistical Analysis on
What datasets exist out on the internet that I can run statistical analysis on?
26
votes
5answers
7k views
Generating statistics from Git repository
I'm looking for some good tools/scripts that allow me to generate a few statistics from a git repository. I've seen this feature on some code hosting sites, and they contained information like...
...
23
votes
5answers
3k views
Select random k elements from a list whose elements have weights
Selecting without any weights (equal probabilities) is beautifully described here.
I was wondering if there is a way to convert this approach to a weighted one.
I am also interested in other ...
22
votes
15answers
2k views
What programming languages are good for statistics?
I'm doing a bit more statistical analysis on some things lately, and I'm curious if there are any programming languages that are particularly good for this purpose. I know about R, but I'd kind of ...
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 ...
20
votes
4answers
1k views
Screening (multi)collinearity in a regression model
I hope that this one is not going to be "ask-and-answer" question... here goes:
(multi)collinearity refers to extremely high correlations between predictors in the regression model. How to cure ...
20
votes
9answers
13k views
How to efficiently calculate a running standard deviation?
I have an array of lists of numbers, e.g.:
[0] (0.01, 0.01, 0.02, 0.04, 0.03)
[1] (0.00, 0.02, 0.02, 0.03, 0.02)
[2] (0.01, 0.02, 0.02, 0.03, 0.02)
...
[n] (0.01, 0.00, 0.01, 0.05, 0.03)
What ...
19
votes
9answers
399 views
What's the best way to unit test code that generates random output?
Specifically, I've got a method picks n items from a list in such a way that a% of them meet one criterion, and b% meet a second, and so on. A simplified example would be to pick 5 items where 50% ...
18
votes
9answers
555 views
How can avoid people using my code for evil?
I'm not sure if this is quite the right place, but it seems like a decent place to ask.
My current job involves manual analysis of large data sets (at several levels, each more refined and done by ...
18
votes
7answers
5k views
How do I programmatically calculate Poker Odds?
I'm trying to write a simple game/utility to calculate poker odds. I know there's plenty of resources that talk about the formulas to do so, but I guess I'm having trouble translating that to code. ...
17
votes
1answer
24k views
Plotting a 3d surface plot with contour map overlay, using R
I have a 3-tuple data set (X,Y,Z points) that I want to plot using R.
As the title of my question states, I want to create a surface plot from the data, and superimpose a contour map on the surface ...
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 ...
17
votes
3answers
8k views
Calculating moving average in R
I'm trying to use R to calculate the moving average over a series of values in a matrix. The normal R mailing list search hasn't been very helpful though. What function in R or that is available as a ...
16
votes
3answers
254 views
What are the key components and functions for standard model objects in R?
I have implemented a new statistical model in R and it works in my sandbox, but I would like to make it more standard. A good comparison is lm(), where I can take a model object and:
apply the ...
16
votes
14answers
7k views
Fitting polynomials to data
Is there a way, given a set of values (x,f(x)), to find the polynomial of a given degree that best fits the data?
I know polynomial interpolation, which is for finding a polynomial of degree n given ...
16
votes
7answers
3k 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 ...
15
votes
5answers
1k views
R: Given a set of random numbers drawn from a continuous univariate distribution, find the distribution
Given a set of real numbers drawn from a unknown continuous univariate distribution (let's say is is one of beta, Cauchy, chi-square, exponential, F, gamma, Laplace, log-normal, normal, Pareto, ...
15
votes
6answers
4k views
Goodness of fit functions in R
What functions do you use in R to fit a curve to your data and test how well that curve fits? What results are considered good?
15
votes
7answers
3k views
Learning Applied Statistics with a focus on R
I know MIT and Stanford have placed many videos online of their courses. Does anybody know of a course (with videos available online) of Applied Statistics?
I've been playing with R and the tool ...
15
votes
5answers
3k views
What does “Create Statistics” do in SQL Server 2005?
The Database Tuning Advisor is recommending that I create a bunch of statistics in my Database. I'm something of a SQL n00b, so this was the first time I'd ever come across such a creature. The ...
14
votes
5answers
322 views
How can I measure trends in certain words, like Twitter?
I have newspaper articles' corpus by day. Each word in the corpus has a frequency count of being present that day. I have been toying with finding an algorithm that captures the break-away words, ...
14
votes
5answers
342 views
Modeling distribution of performance measurements
How would you mathematically model the distribution of repeated real life performance measurements - "Real life" meaning you are not just looping over the code in question, but it is just a short ...
14
votes
12answers
3k views
How popular is Groovy/Grails in the corporate world?
Are there any figures for its adoption in corporate environments? Does anyone know of large corporations that have adopted it for projects?
13
votes
2answers
271 views
Precision, why do Matlab and Python numpy give so different outputs?
I know about basic data types and that float types (float,double) can not hold some numbers exactly.
In porting some code from Matlab to Python (Numpy) I however found some significant differences in ...
13
votes
3answers
341 views
Fitting data to a 3rd degree polynomial
I'm currently writing a C++ program where I have vectors of independent and dependent data that I would like to fit to a cubic function. However, I'm having trouble generating a polynomial that can ...
13
votes
2answers
371 views
Determine “wiggliness” of set of data - Python
I'm working on a piece of software which needs to implement the wiggliness of a set of data. Here's a sample of the input I would receive, merged with the lightness plot of each vertical pixel strip:
...
13
votes
3answers
755 views
How to use the R Function 'Sweep'
When i look at the source of R Packages, i see the function sweep used quite often.
Sometimes it's used when a simpler function would have sufficed (e.g., 'apply'),
other times, it's impossible to ...
13
votes
3answers
634 views
Automating R Script
I have written an R script that pulls some data from a database, performs several operations on it and post the output to a new database.
I would like this script to run every day at a specific time ...
13
votes
6answers
3k views
Standard library function in R for finding the mode?
In statistical language R, mean() and median() are standard functions which do what you'd expect. mode() tells you the internal storage mode of the R object, not the value that occurs the most in its ...
13
votes
4answers
592 views
Efficient algorithm for detecting different elements in a collection
Imagine you have a set of five elements (A-E) with some numeric values of a measured property (several observations for each element):
A = {100, 110, 120, 130}
B = {110, 100, 110, 120, 90}
C = { 90, ...
13
votes
5answers
2k views
What is the Entropy of Android's Dot Password System?
How many permutations of the androids dot login system are possible? I know for a fact the solution to this lies in Discrete Math, specifically Permutations Without Repetition, If your answer ...
13
votes
9answers
1k 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" ...
13
votes
5answers
5k views
Java library to do time series analysis
I need to do some analysis of an arbitrary amount of time series in Java.
Among others i need to be able to use Linear regression, various smoothing techniques, filtering, etc.
I'm not very keen of ...
13
votes
6answers
4k views
How many professional software developers are there worldwide? [closed]
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 ...
13
votes
4answers
6k views
R: How to access the last value in a vector?
Yes people, even though I'm talking about the R Project for Statistical Computing, it can still require programming!
Suppose I have a vector that is nested in a dataframe one or two levels. Is there ...
12
votes
3answers
526 views
Is there any software for testing sequences for non-randomness in Java?
I looking for a program or library in Java capable of finding non-random properties of a byte sequence. Something when given a huge file, runs some statistical tests and reports if the data show any ...
12
votes
6answers
492 views
Ways to calculate similarity
I am doing a community website that requires me to calculate the similarity between any two users. Each user is described with the following attributes:
age, skin type (oily, dry), hair type (long, ...
12
votes
4answers
5k views
Which Git commit stats are easy to pull
Previously I have enjoyed TortoiseSvn's ability to generate simple commit stats for a given SVN repository. I wonder what is available in Git and am particularly interested in :
Number of commits ...
12
votes
7answers
4k views
How do I determine the standard deviation (stddev) of a set of values?
I need to know if a number compared to a set of numbers is outside of 1 stddev from the mean, etc..
12
votes
7answers
404 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 ...
12
votes
7answers
553 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 ...
12
votes
3answers
7k views
Explain the quantile() function in R
I've been mystified by the R quantile function all day.
I have an intuitive notion of how quantiles work, and an M.S. in stats, but boy oh boy, the documentation for it is confusing to me.
From ...
11
votes
3answers
424 views
data collection for statistics: from web to a database
I'm a statistician by trade and I'd like some recommendations on how to set up a website that can collect data into a database. For personal use, I use Google Forms to collect data, and everything ...