The arithmetic mean, or simply the mean or average when the context is clear, is the central tendency of a collection of numbers taken as the sum of the numbers divided by the size of the collection.

learn more… | top users | synonyms

0
votes
1answer
23 views

Possible Error with an item on the AP Computer Science Exam

I took the AP Computer Science Exam this year, and one of the questions, number 16 for me, appeared to actually not have a completely correct answer (although it was clear which answer the AP people ...
1
vote
4answers
56 views

calculate differences in dataframe

I have a dataframe that looks like this: set.seed(50) data.frame(distance=c(rep("long", 5), rep("short", 5)), year=rep(2002:2006), mean.length=rnorm(10)) distance year ...
2
votes
1answer
40 views

`mean` not producing right answer

As above, anyone knows what is happening? m1 <- 0.457842055395572 m2 <- 0.587127416942505 sum(m1, m2)/2 mean(m1, m2) Output: > m1 <- 0.457842055395572 > m2 <- 0.587127416942505 ...
0
votes
1answer
23 views

What is the purpose of boost accumulator error_of<mean>?

The documentation of the error_of< mean > feature for boost accumulators states that it calculates the error of a mean value by the formula: sqrt(variance / (count - 1)), where the variance is ...
0
votes
2answers
35 views

mean and sd of the day in R with xts

again I do have my df in xts and don't have names! (as far as I know there is no name anymore when setting as.POSIXct()): "2012-04-09 05:00:00",2 "2012-04-09 09:00:00",4 "2012-04-09 ...
1
vote
2answers
39 views

Calculate mean for uneven weighting in matlab

I want to calculate the mean of a field of tracers in Matlab, but the cells that make up the field are a different size. For example, my tracer field is: T = 1 3 5 8 2 1 4 3 2 1 9 1 20 8 3 1 ...
0
votes
3answers
77 views

R loop dataframes [duplicate]

I am dealing with a dataframe in R that has only 2 columns but a very large number of rows. I want to divide my dataframe into subsets of say 'm' rows each and find the mean of the values in a column ...
0
votes
0answers
15 views

log and mean operation in data preprocessing

I have a time series data, e.g. X_t = [x_{t_1}, x_{t_2}, ... x_{t_n}] (t = 1, ..., m), each X_t is an observation series within a fixed time interval, I want to transform each X_t into log scale ...
-1
votes
1answer
42 views

R: why my mean is returning a range of values instead of one value? [closed]

I have a vector (216 lines) in my dataframe, which contain some "NA"s: info$wd I am using the code to calculate the mean: mean.wd <- c(info$wd, na.rm = T) But instead of getting one value for the ...
1
vote
2answers
42 views

Matlab returning only NANs from a vector that has NaNs and non-NaNs

I have simulation data in a vector of size 50,000 x 1, which has NaNs and non-NaNs. I would like to average the non-NaNs, but the function nanmean returns NAN. I have tried removing the NANs, but I ...
0
votes
3answers
40 views

Trying to Create a method in a class to calculate the mean age of a list of people in python

I am trying to create a method in a class to calculate the mean age of a list in python. Basically, say I have a list of different people called peoplelist, each person in peoplelist has a format of ...
0
votes
1answer
41 views

Storing the output of a function into a variable in R

I'm having trouble with storing the output of a function into a variable. I think it's best that I give some context to the problem I'm trying to work out. Suppose that players "a" and "r" play a game ...
-2
votes
1answer
39 views

Finding the “mean” value

I have the following matlab function, the finds the maximum for a number of columns in a matrix: function m = maximum(u) [row col] = size(u); for i=1:col m(i) = max(u(:,i)) end end I know that ...
1
vote
2answers
82 views

MATLAB find mean of column in matrix using two different indices

I have a 22007x3 matrix with data in column 3 and two separate indices in columns 1 and 2. eg. x = 1 3 4 1 3 5 1 3 5 1 16 4 1 16 3 1 16 4 2 4 1 ...
0
votes
3answers
138 views

mean and standard deviation by group for multiple variables [duplicate]

I am sure this question has been answered before, but I would like to caclulate mean and sd by treatment for multiple variables (100s) all at once and cannot figure out how to do it aside from using a ...
0
votes
4answers
109 views

MATLAB find and apply function to values of repeated indices

I have a 352x11 matrix, indexed by column 1 with 10 data points. Some of the index values are repeated. I'd like to find the repeated indices and calculate the mean data points for the repeated trials ...
1
vote
2answers
35 views

Transferring categorical means to a new table

I'm fairly new to R, but I've tackled much larger challenges than my current problem, which makes it particularly frustrating. I searched the forums and found some related topics, but none would do ...
1
vote
6answers
81 views

How can I calculate the mean of the top 4 observations in my column?

How can I calculate the mean of the top 4 observations in my column? c(12, 13, 15, 1, 5, 9, 34, 50, 60, 50, 60, 4, 6, 8, 12) For instance, in the above I would have (50+60+50+60)/4 = 55. I only ...
4
votes
6answers
143 views

Finding mean of standard normal distribution in a given interval

I want to find mean of standard normal distribution in a given interval. For example, if I divide standard normal distribution into two ([-Inf:0] [0:Inf]) I want to get the mean of each half. ...
2
votes
1answer
61 views

MATLAB: Get mean of first n values sorted by first column

I have a cell array of 21128x9 cells sorted by column 1 e.g.(massively simplified): A=[1 3; 1 5; 1 3; 2 1; 2 2; 2 3; 3 5; 3 5] A = 1 3 1 5 1 3 ...
0
votes
0answers
32 views

Error replacing a “NA” value in the workframe

Whenever I try to assign a value (mean) to a specific location in my workframe, to replace a "NA" R gives me: Warning message: In [<-.factor(*tmp*, iseq, value = 40.7392573981055) : invalid ...
2
votes
3answers
93 views

Find mean of a column for every 1000000 count in R

I have a dataframe which has the following structure with two columns data1 and data2. Below is the sample data: data1 data2 800000 1 800030 0.956521739130435 1000000 ...
0
votes
0answers
12 views

change amplitude of euclidean distance

I have two dissimilarity matrix one is euclidean distance with the amplitude of 0 to infinity, another one is between 0 to 1. how to take the mean of these two? I think I need to change the amplitude ...
0
votes
1answer
40 views

How can I know the mean value of a function in an interval?

Suppose I have a function, something like: fun <- function(x) 2.3*exp(-x/2) and I want to get the mean value of this function along an interval, suppose from 2 to 20. to get the mean, the first ...
0
votes
2answers
105 views

Principal component analysis (PCA) compute mean using python

I am a beginner to python and I am implementing Principal component analysis (PCA) using python, but I am having a problem computing the mean. Here is my code: import Image import os from PIL import ...
0
votes
1answer
93 views

Wrong result from mean(x, na.rm = TRUE)

I want to compute the mean, min and max of a series of Managers returns, as follows: ManagerRet <-data.frame(diff(Managerprices)/lag(Managerprices,k=-1)) I then replace return = 0 with NaN since ...
2
votes
3answers
74 views

Calculate mean across dimension in a 2D array

I have an array a like this: a=[] a.append([40,10]) a.append([50,11]) so it looks like this: >>> a [[40, 10], [50, 11]] I need to calculate the mean for each dimension separately, the ...
0
votes
1answer
61 views

Finding the mean and standard deviation of a data column in OpenOffice Calc

I have several data columns with 400 to 500 entries in each in a Calc spreadsheet. For each of these columns, I would like simply to be able to find the mean and standard deviation, but don't know how ...
1
vote
1answer
35 views

Python dictionary ManuaLoa CO2

I need some help with my python program. I have imported a .txt file and made a dictionary of it in an numpy array. The text file is a table of co2 meassures, one per month per year. I need to ...
0
votes
0answers
64 views

Attempting to average along one dimension of a cell array (or matrix, unsure) in Matlab. [closed]

I have a cell array (or matrix, not sure , I am new to matlab) that is c = [10x140x24 single], I would like to average across the third dimension. so I only have a [10x140] or [10x140x1]. I have ...
-1
votes
1answer
67 views

mean/sd as a value, not a vector

the mean and sd functions in R return a numerical vector of length 1. I would like to calculate mean and standard deviation as a single value, not a vector. This seems simple enough: just take the ...
0
votes
1answer
38 views

Aggregate with trimmed means in R

I am trying to aggregate data like this in R: df = data.frame(c("a","a","a","a","a","b","b","b","b","b","c","c","c")) colnames(df) = "f" set.seed(10) df$e = rnorm(13,20,5) f e 1 a 20.09373 ...
0
votes
4answers
69 views

How to compute a mean of a specific column of a matrix, excluding a given value IN MATLAB

I have a 1000x7 matrix whose columns present some values equal to -99. I want to compute the mean of each column separately because I'm building a table using fprintf, but I want the mean to be ...
1
vote
1answer
49 views

Getting Factor Means into the dataset after calculation

I am trying to create a normalization value for a variable I am working with based on individual conference means and SDs. I found the conference means using the function: confavg=aggregate(base$AVG, ...
0
votes
0answers
16 views

store data into an array inside a for loop

#include <iostream> #include <stack> #include <ctime> std::stack<clock_t> tictoc_stack; void tic() { tictoc_stack.push(clock()); } void toc() { std::cout ...
0
votes
2answers
78 views

Averaging daily data over many years to replace NA values in R

I have a dataframe called daily which looks like this: daily[1:10,] Climate_Division Date Precipitation 1 1 1948-07-01 0.2100000 2 ...
-1
votes
2answers
98 views

Calculate mean of elements in array with same “identifier” [closed]

I have a numpy array of the following form: ['viola.jpg' '0.81' '1.0693461723' '100'] ['viola.jpg' '0.44' '1.31469086921' '18'] ['viola.jpg' '0.8' '3.92096084523' '73'] ['vlasta.jpg' '0.88' ...
0
votes
1answer
60 views

How to take the mean of columns from an array within an array?

I am currently working on a project in Matlab where I have a cell array of cell arrays. The first cell array is 464 columns long and 1 row deep. Each of these cells is another cell array that is 96 ...
11
votes
1answer
228 views

haskell - Average floating point error using QuickCheck

I am using QuickCheck-2.5.1.1 to do QA. I am testing two pure functions gold :: a -> Float and f :: a -> Float, where a instances Arbitrary. Here gold is a reference calculation and f is a ...
0
votes
5answers
78 views

Computing the average of an array

This is a code to take user imputed grades, find their average, the deviation, and display this information in a table style. My program takes user input and displays the information well, but it ...
2
votes
1answer
90 views

How can I find the row and column of a matrix having the closest value to its mean? in R

I have a large matrix, like this one: NCols=100 NRows=100 myMat<-matrix(runif(NCols*NRows), ncol=NCols) I am interested in locating which row and column have the closest value to the mean or ...
0
votes
1answer
166 views

Mean calculation worst case, best case and average case complexity

What is the (a) worst case, (b) best case, and (c) average case complexity of the following function which calculates the mean n=0 sum=0 input(x) while x!=-999 do n=n+1 sum=sum+x input(x) ...
1
vote
1answer
166 views

ggplot: lineplot of means of two groups

I have searched and searched in the stacks for an answer to my question; this one approaches my question but I have been unsuccessful in modifying the code to fix my graph. I have data, reshaped in ...
1
vote
2answers
129 views

Logarithmic mean of vector

To follow the exact methodology presented in an article I would like to calculate the Logarithmic mean of a data vector. I did not find any functions for this in R, or any previous discussions. The ...
0
votes
4answers
70 views

Computing deviation from mean for each row

Using the following code, I wrote a function to that gives me the average of the values in each row (1). Now I would like to compute the deviation of each value (i,j) in row i from the mean calculated ...
1
vote
1answer
153 views

Dataframe, Sum, Mean Help: How to sum and mean matrix?

I need explanation for data frame, sum, and mean commands If the code below is operated, I can get list of data files Preplist. Yet, the commands I need explanations for does not work due to some ...
0
votes
1answer
89 views

R programming help in editing code

I've asked many questions about this and all the answers were really helpful...but once again my data is weird and I need help...Basically, what I want to do is find the average speed at a certain ...
0
votes
0answers
48 views

Using of Boost Accumulators tag mean : compilation error due to average function

I want to use the mean tag of Boost accumulators library (I use Boost 1.49). I proceed as followed : #include <boost/accumulators/accumulators.hpp> #include ...
0
votes
1answer
100 views

R programming fixing error

Hi guys I asked a similar question about this here previously and I got some really awesome answers. But it turns out I have more data I need to work with sadly. So I have sample data in this format ...
0
votes
2answers
100 views

How efficient is .NET framework's DataVisualization.Charting.StatisticFormula.Mean() versus just creating a list, enumerating, summation and dividing?

I attempted to use ILSpy to take a look at System.Windows.Forms.DataVisualization.dll at the function System.Windows.Forms.DataVisualization.Charting.StatisticFormula.Mean() and it doesn't appear to ...

1 2 3 4 5