Tagged Questions
5
votes
6answers
343 views
What's the quickest way to get the mean of a set of numbers from the command line?
Using any tools which you would expect to find on a nix system (in fact, if you want, msdos is also fine too), what is the easiest/fastest way to calculate the mean of a set of numbers, assuming you ...
1
vote
2answers
376 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?
1
vote
1answer
175 views
scipy stats geometric mean returns NaN
I am using scipy's gmean() function to determine the geometric mean of a numpy array that contains voltage outputs. The range of the numbers is between -80.0 and 30.0. Currently, the numpy array is ...
1
vote
4answers
225 views
Reverse Statistics with R
What I want to do sounds simple. I want to plot a normal IQ curve with R with a mean of 100 and a standard deviation of 15. Then, I'd like to be able to overlay a scatter plot of data on top of it.
...
0
votes
1answer
199 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?
0
votes
3answers
140 views
An accurate running statistical mean of a large array of bytes
I have a two dimensional array of bytes which looks like this:
int n = 100000;
int d = 128;
byte[][] samples = new byte[n][d]
/* proceed to fill samples with some delicious data */
byte[] mean = new ...