Tagged Questions
The mean tag has no wiki summary.
20
votes
11answers
6k views
Why does isNaN(“ ”) equal false
I have a quick question (I hope!). In JS, why does isNaN(" ") evaluate to false, but isNaN(" x") evaluate to true?
I'm performing numerical operations on a text input field, and am checking if ...
6
votes
4answers
458 views
“average length of the sequences in a fasta file”: Can you improve this Erlang code?
I'm trying to get the mean length of fasta sequences using Erlang. A fasta file looks like this
>title1
ATGACTAGCTAGCAGCGATCGACCGTCGTACGC
ATCGATCGCATCGATGCTACGATCGATCATATA
...
5
votes
3answers
222 views
grouping objects to achieve a similar mean property for all groups
I have a collection of objects, each of which has a numerical 'weight'. I would like to create groups of these objects such that each group has approximately the same arithmetic mean of object ...
5
votes
1answer
2k views
Mean filter in MATLAB without loops or signal processing toolbox
I need to implement a mean filter on a data set, but I don't have access to the signal processing toolbox. Is there a way to do this without using a for loop? Here's the code I've got working:
...
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 ...
4
votes
2answers
67 views
Assign pass/fail value based on mean in large dataset
this might be a simple question but I was hoping someone could point me in the right direction. I have a sample dataset of:
dfrm <- list(L = c("A","B","P","C","D","E","P","F"), ...
4
votes
1answer
133 views
How to find the mean/average of a sound in Nyquist
I'm trying to write a simple measurement plug-in for Audacity and it's about as much fun as pounding rocks against my skull. All I want to do is take a chunk of audio and find the average of all the ...
4
votes
5answers
2k views
How to use numpy with 'None' value in python?
i'm a pretty new user of python and numpy, so i hope my question won't annoy you.
Well, i'd like to calculate the mean of an array in python in this form :
Matrice = [1, 2, None]
I'd just like to ...
3
votes
2answers
43 views
Differences of values based on mean months and rolling data
I am trying to do something which seems simple but is proving a bit of a challenge so I hope someone can help!
I have a time series of observations of temperature:
Lines <-"1971-01-17 298.9197
...
3
votes
4answers
133 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
2answers
143 views
Generating a new list with same std and mean
How do I generate a new list from random numbers that have the same mean and standard deviation from the original list?
I tried newlist = mean(list) + std(list)*randn(100,1); which I found on the ...
3
votes
3answers
290 views
z-Scores(standard deviation and mean) in PHP
I am trying to calculate Z-scores using PHP. Essentially, I am looking for the most efficient way to calculate the mean and standard deviation of a data set (PHP array). Any suggestions on how to do ...
3
votes
2answers
227 views
Element-wise mean in R
In R, I have two vectors:
a <- c(1, 2, 3, 4)
b <- c(NA, 6, 7, 8)
How do I find the element-wise mean of the two vectors, removing NA, without a loop? i.e. I want to get the vector of
(1, 4, ...
2
votes
1answer
41 views
find the mean for points of binary features
I have groups of binary string each bit represent a feature in a variable e.g I have a color variable where red blue and green are the features thus if I have 010 --> I have a blue object.
I need to ...
2
votes
1answer
178 views
Performing many means in numpy
Good Morning,
I am implimenting a Cressman filter for doing distance weighted averages in Numpy.. I use a Ball Tree implimentation (thanks to Jake VanderPlas) to return a list of locatations for each ...
2
votes
2answers
518 views
Assign a column mean to specific matrix values in MATLAB
I want to have something like:
Mu = mean(X); % column-wise means
X(X == 0) = Mu(current_column); % assign the mean value of the current column to the zero-element
But how do I tell matlab that I ...
2
votes
3answers
1k views
How to average over a cell-array of arrays?
I have a cell array c of equal-sized arrays, i.e. size(c{n}) = [ m l ... ] for any n. How can I get the mean values (averaging over the cell array index n) for all array elements in one sweep? I ...
2
votes
2answers
164 views
Need help in reading .txt file which contains a table with blanks?
Consider this -
"ID_REF" "GSM887" "GSM888" "GSM889" "GSM890" "GSM891"
10 ...
2
votes
7answers
122 views
compute mean in python for a generator
I'm doing some statistics work, I have a (large) collection of random numbers to compute the mean of, I'd like to work with generators, because I just need to compute the mean, so I don't need to ...
1
vote
2answers
371 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
2answers
246 views
Randomly subset data set multiple times and calculate means and variances
I never came to any conclusions re: this question, so I thought I would rephrase it and ask again.
I would like to subsample my dataset 10,000 times to generate means and 95% CIs for each of my ...
1
vote
3answers
103 views
calculating mean and maximum value of a 4D data
i have a 4D image data. 384-by-276-by-20-by-5. where data(X,Y,T,V), X=xlocation, Y=ylocation, T= time, V=vessel location.
I would like to have a mean value over time and maximum value over time for ...
1
vote
1answer
174 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
2answers
125 views
Plotting mean and std. deriv. of logarithmic data in R
I'd like to plot some data stored in two vectors (x and y) in loglog scale.
Furthermore, I want to add the mean and the standard derivation (latter using bars).
My problem is, that there are zeros in ...
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.
...
1
vote
2answers
441 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
1answer
128 views
How can I calculate the mean of all months until now?
I have a column with a value for each month, like: 1,2,3,...,12. And I have a row with 12 cells (each corresponding to a month). And I have another cell that says the current month.
My question is: ...
1
vote
1answer
3k views
How should I perform this binning and averaging in MATLAB?
I am trying to perform a binning average. I am using the code:
Avg = mean(reshape(a,300,144,27));
AvgF = squeeze(Avg);
The last line gets rid of singleton dimensions.
So as can be seen I am ...
1
vote
2answers
2k views
How to calculate mean based on number of votes/scores/samples/etc?
For simplicity say we have a sample set of possible scores {0, 1, 2}. Is there a way to calculate a mean based on the number of scores without getting into hairy lookup tables etc for a 95% ...
0
votes
3answers
49 views
How can I get xtabs to calculate means instead of sums in R?
I have a data frame where each line represents an individual. That data frame has two variables: age and year. I want to make a table of average ages per year. How can I do it?
The best I could come ...
0
votes
2answers
31 views
MATLAB: sum of one row
I am trying to streamline my code. I have a 2-column array from which I'd like to extract the averages of the columns and store them as X and Y.
I tried using the following code:
[x y] = ...
0
votes
2answers
58 views
create aggregate column based on variables with R
I apologize in advanced if this is somewhat of a noob question but I looked in the forum
and couldn't find a way to search what I am trying to do.
I have a training set and I am trying to find a way ...
0
votes
1answer
197 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
1answer
88 views
Hexadecimal manipulation woes. Cannot reach expected value
I am supposed to merge the values of source and background arrays to get the value in expected (the answer array).
int[][] source = { { 0, 0x44, 0x300, 0x660000 } };
int[][] background = ...
0
votes
3answers
86 views
Pass an array through a function
I'm trying to pass a simple array through a function to compute the mean.
int main()
{
int n = 0; // the number of grades in the array
double *a; // the array of grades
cout << ...
0
votes
3answers
112 views
Finding Geometric Mean of user input
I am working on a project for a class and I am having trouble with the output of the geometric mean, which always come out to be 1 and I'm sure that isn't right.
Here's my code:
...
0
votes
2answers
116 views
Randomly select increasing subset of data to see where mean levels off
Could anyone please advise the best way to do the following?
I have three variables (X, Y & Z) and four groups (1, 2, 3 & 4). I have been using discriminant function analysis in SPSS to ...
0
votes
0answers
195 views
Using MODE for Standard Deviation in SQL Server
I'm trying to eliminate outliers of a set using 1.65 (90%) Standard Deviations from the MODE, not MEAN for various reasons I won't go in to now.
Is there a good way of doing this? I assume the built ...
0
votes
3answers
132 views
weighted mean with integers
The situation: we have an integer based microcontroller and we need to calculate weighted mean (for example, weight 32, like 31-1), and store it in an array.
The the final code will be in C.
(And ...
0
votes
1answer
66 views
finding the mean and sd for each unique animal breed using R
Just a quick refresh. I have a data set here which I need to find the mean, sd, etc of unique breeds. I knew that I have done something like this before but just could not get the script together.
My ...
0
votes
5answers
454 views
Calculate means of rows
I have a dataframe called ants detailing multiple entries per site, looks like this:
Site Date Time Temp SpCond Salinity Depth Turbidity Chlorophyll
1 71 6/8/2010 14:50:35 14.32 49.88 ...
0
votes
1answer
206 views
calculating means of many matrices in numpy
I have many csv files which each contain roughly identical matrices. Each matrix is 11 columns by either 5 or 6 rows. The columns are variables and the rows are test conditions. Some of the ...
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 ...
0
votes
1answer
148 views
Quality questionnaire php mysql graphipcs
i'm making a questionnaire about a service quality, its contains the options (poor, regular, good, very good). It's contains 6 questions (radio button) and a suggestion box (textbox).
In the table of ...
0
votes
1answer
539 views
SSRS Chart w/Series and Mean
I have a chart I'm making in SSRS.
My database is returning data like this:
Period Name, Question, Answer, Count, Mean, Median
Nov 09, Can Haz Chezbrgr, Yes, 5, 4, 3.1
Nov 09, Can Haz Chezbrgr, No, ...
0
votes
2answers
500 views
Weighted average of angles
I want to calculate the weighted mean of a set of angles.
In this Question, there's an answer how to calculate the mean
as shown in this page.
Now I'm trying to figure out how to calculate the ...
-1
votes
1answer
358 views
Matlab loops for a function
I am trying to make a loop to redo a Matlab function 1000 times. Here's the program
d = unifrnd (0,10,[10,1]);
c = d.^(-2);
a = round(unifrnd(0,1,[1,10]);
e = a*c
btotal = e+1
SIR = 1/btotal
What I ...
-5
votes
1answer
651 views
Reducing Mean Square Error
The topic of mine is face recognition using artificial neural networks using MATLAB code.
I tried my work by taking the images from web and started implementing the program by using neural networks.
...
-8
votes
2answers
133 views
What does (String args []) mean?
I have this in the File.java:
public static void main(String args[]) throws Exception_Exception {
URL wsdlURL = CallSService.WSDL_LOCATION;
if (args.length > 0) {
File wsdlFile = ...