Consider whether your question would be better at http://statistics.stackexchange.com. Statistics is the mathematical study of using probability to infer characteristics of a population from a limited number of samples or observations.
226
votes
17answers
13k views
What statistics should a programmer (or computer scientist) know? [closed]
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 ...
152
votes
9answers
5k 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 ...
76
votes
12answers
12k views
Workflow for statistical analysis and report writing [closed]
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 ...
65
votes
7answers
22k views
Generating statistics from Git repository [closed]
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...
...
58
votes
12answers
10k 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 ...
52
votes
20answers
4k 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 ...
50
votes
7answers
2k 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
10answers
18k 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 ...
40
votes
14answers
31k 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 ...
38
votes
7answers
10k 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 ...
37
votes
2answers
23k 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 ...
36
votes
1answer
48k 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.
I want to create a surface plot from the data, and superimpose a contour map on the surface plot, so as to create the impression ...
35
votes
12answers
7k 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 ...
34
votes
17answers
5k views
Datasets for Running Statistical Analysis on [closed]
What datasets exist out on the internet that I can run statistical analysis on?
33
votes
4answers
18k views
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 ...
31
votes
10answers
39k 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 ...
31
votes
4answers
1k views
Getting statistics from Google Play Developers with an API
I am in charge of developing a website which should be able to show statistics from both Apple's app store and Google Play Store to clients, so they can easily see what's going on.
I have figured out ...
30
votes
6answers
15k 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 ...
28
votes
16answers
5k views
What programming languages are good for statistics? [closed]
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 ...
26
votes
3answers
25k views
Calculating arithmetic mean (average) in Python
Is there a built-in or standard library method in Python to calculate the arithmetic mean (average) of a list of numbers?
26
votes
14answers
13k 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 ...
24
votes
1answer
2k views
Is there a good math/stats library for Scala?
I'm looking for a good open source library for scala for math and statistics. Hopefully something like Apache Math or Colt, but implemented in Scala.
Can anyone point me in the right direction?
24
votes
9answers
3k views
What is a better way to sort by a 5 star rating?
I'm trying to sort a bunch of products by customer ratings using a 5 star system. The site I'm setting this up for does not have a lot of ratings and continue to add new products so it will usually ...
24
votes
5answers
7k 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 ...
23
votes
5answers
12k views
Statistics: combinations in Python
I need to compute combinatorials (nCr) in Python but cannot find the function to do that in 'math', 'numyp' or 'stat' libraries. Something like a function of the type:
comb = ...
23
votes
4answers
5k 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 ...
23
votes
3answers
19k views
Simple statistics - Java packages for calculating mean, standard deviation, etc
Could you please suggest any simple Java statistics packages?
I don't necessarily need any of the advanced stuff. I was quite surprised that there does not appear to be a function to calculate the ...
23
votes
7answers
12k 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. ...
22
votes
4answers
53k views
What is the difference between Multiple R-squared and Adjusted R-squared in a single-variate least squares regression?
Could someone explain to the statistically naive what the difference between Multiple R-squared and Adjusted R-squared is? I am doing a single-variate regression analysis as follows:
v.lm <- ...
21
votes
9answers
606 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% ...
21
votes
3answers
13k 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 ...
20
votes
16answers
6k 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?
20
votes
7answers
5k 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 ...
19
votes
4answers
17k views
Standard deviation of generic list? [duplicate]
I need to calculate the standard deviation of a generic list. I will try to include my code. Its a generic list with data in it. The data is mostly floats and ints. Here is my code that is relative to ...
19
votes
3answers
353 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 ...
19
votes
3answers
3k 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 ...
19
votes
3answers
2k views
Using Holt-Winters for forecasting in Python
I've been trying to use this implementation of the Holt-Winters algorithm for time series forecasting in Python but have run into a roadblock... basically, for some series of (positive) inputs, it ...
18
votes
8answers
17k views
Calculating Pearson correlation and significance in Python
I am looking for a function that takes as input two lists, and returns the Pearson correlation, and the significance of the correlation. I am using Python.
Thank you very much.
Ariel
18
votes
5answers
2k views
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, ...
18
votes
9answers
590 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
4answers
7k views
Geometric Mean: is there a built-in?
i tried to find a built-in for geometric mean but couldn't.
(Obviously a built-in isn't going to save me any time while working in the shell, nor do i suspect there's any difference in accuracy; for ...
18
votes
4answers
4k views
Suppressing “null device” output with R in batch mode
I have a number of bash scripts which invoke R scripts for plotting things. Something like:
#!/bin/bash
R --vanilla --slave <<RSCRIPT
cat("Plotting $1 to $2\n")
input <- read.table("$1")
...
17
votes
7answers
4k 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 ...
17
votes
1answer
7k views
Browser statistics on JavaScript disabled
I am having a hard time collecting publically available statistics on the percentage of web users that browse with JavaScript disabled.
Yahoo has published data from 2010 and R. Reid published data ...
16
votes
3answers
9k views
calculate mean and standard deviation from a vector of samples in C++ using boost
Is there a way to calculate mean and standard deviation for a vector containing samples using boost?
Or do I have to create an accumulator and feed the vector into it?
16
votes
4answers
1k views
Is a Markov chain the same as a finite state machine?
Is a finite state machine just an implementation of a Markov chain? What are the differences between the two?
16
votes
3answers
1k 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 ...
16
votes
6answers
460 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 ...
15
votes
6answers
11k 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..
15
votes
7answers
8k views
C# Normal Random Number
I would like to create a function that accepts Double mean, Double deviation and returns a random number with a normal distribution.
Example: if I pass in 5.00 as the mean and 2.00 as the ...
