In mathematics, an average is a measure of the "middle" or "typical" value of a data set.
5
votes
1answer
34 views
Interval average of 1D data
I have two 1D arrays, one for measured data and the other one for location. For example, the measured data could be temperature and the other array the heights of the measurement:
temp = ...
0
votes
1answer
24 views
How do I work out average rating and add a new column to my MySQL table to record this
I have a MySQL table of product ID's which has columns which show how many times each of these products has recieved a 1, 2, 3, 4 or 5 star rating from my customers. I would like to insert into the ...
5
votes
4answers
78 views
How to find an average date/time in the array of DateTime values with C#
If I have an array of DateTime values:
List<DateTime> arrayDateTimes;
What's the way to find the average DateTime among them?
For instance, if I have:
2003-May-21 15:00:00
2003-May-21 ...
-4
votes
0answers
28 views
Average of Numbers [closed]
Assume that a file containing a series of integers is named numbers.dat and exists on the computer's disk. Design a program that calculates the average of all the numbers stored in the file.
-1
votes
1answer
32 views
Compute monthly averages from daily data
I have this dataframe "df1" as example which is actually part of a much larger one (15 years):
X1 X2
3798 2009-12-29 0
3799 2009-12-30 0
3800 2009-12-31 ...
0
votes
2answers
25 views
SQL Selecting average of rating from another table
I have two tables: Anime_List and Anime_Reviews.
Anime_List table has a 'Rating' field that grabs the average rating from Anime_Reviews. However, some ratings (rows) don't exist in Anime_Reviews and ...
0
votes
4answers
49 views
Taking the average of an Array
I'm trying to put together a java program to do the following:
Prompt for and read in a number of integers to read
Create an array that can hold that many integers
Use a loop to read in integer ...
3
votes
1answer
65 views
SQL Sever Averages/Sums/Groups/Counts Query Issue
I have the following table:
╔══════════╦════════╦═══════╦═══════╗
║ PlayerID ║ GameID ║ Stat1 ║ Stat2 ║
╠══════════╬════════╬═══════╬═══════╣
║ 1 ║ A ║ 2 ║ 1 ║
║ 1 ║ B ...
-2
votes
2answers
75 views
Need help on finding AVERAGE in python [duplicate]
What is the average value of the numbers in the field [quant] in the range (198) and (272) inclusive
quant
95
189
176
200
177
340
205
203
284
88
109
83
360
67
250
56
111
439
354
143
this is the ...
3
votes
3answers
51 views
Aggregate data frame by date and apply different functions to corresponding columns?
I have the following data frame "DF" which is part of a much larger one:
X1 X2 X3 X4 X5
4468 2010-03-24 3 1.000000e+00 1 2
7662 2010-03-24 9 3.000000e+00 2 1
1272 ...
1
vote
2answers
85 views
Need Help on Average Python [closed]
Find the average of the values in the field [quant] greater than or equal to (337)
this is the quant field
quant
100
7
109
204
28
292
105
254
441
401
410
14
15
51
96
403
75
31
109
17
this is the ...
0
votes
2answers
94 views
Finding The Average on Python
What is the average value of the numbers in the field [Num] in the range (3987) and (5026) inclusive?
The field is below it is field [4] on excel.
**amount code quan val number ...
0
votes
1answer
32 views
What is the correct way to implement this loop that will average values with a changing counter?
I have looked thoroughly on the internet for an answer to this question, but it seems to be too specific for an answer anywhere else. This is my last stop.
To preface, this is not a homework problem, ...
2
votes
3answers
39 views
How do I get a daily average for one month?
How do I return the daily average for an entire month?
select count(distinct people_id)
from #enrollments_PreviousMonth
where program_modifier_id = 'E1AA7A36-0500-4BAE-A0AA-D9E0BC91A6F3'
AND ...
-2
votes
0answers
49 views
Finding average value of numbers in range 298-272?
What is the average value of the numbers in the field [quant*0*] in the
range (198) and (272) inclusive
word_file=open('3200371a.csv','r')
firstLine= True
metalCounts = 0 # ...
0
votes
4answers
27 views
php - calculating distance divded by time
How do I divide a decimal by time queried from database as time format.
Any idea?
$time = date($entity->getTime()->format('H:i:s'));
$speed = $distance/$time
Which is definitely wrong and if ...
3
votes
2answers
59 views
getting the average, p95 and p99 of a stream of data
I have incoming data and I want to compute the average, 95th and 99th percentile of that data - I am most interested in the last 1000 values. At any time, I'd like to query this object to get any of ...
1
vote
1answer
34 views
Numpy - Regrid with Averaging redux
I'm trying to implement something similar to what was answered in this post about regridding in python. The question in that post involved regridding an array such that an output cell would contain ...
1
vote
1answer
55 views
Python Comparing lists averages sorting
I am currently working on a python problem that involves taking a list consisting of 2 sublists of numbers and an identifier, for a total of three things. The procedure name is compareTeams(lstTeams), ...
0
votes
2answers
24 views
Syntax Error: Unexpected EOF while parsing?
I'm doing a simple little average calculator.
def avg():
sumSoFar = 0
count = 0
numCount = 0
while numCount != "":
numCount = eval(input("Please enter a number or press <enter> to ...
0
votes
1answer
36 views
Compute multiple distinct averages
I'm fairly new to rails, and am still getting used to putting together methods. I'm currently trying to create a method that averages distinct data from multiple columns. I'd like to do it all in one ...
0
votes
1answer
24 views
Average values by group
I have two tables in my web app: one is for Donors (called "donors") and the other is for Donation Amounts (called "donations). When you click on a donor, you can see all of their donations.
I'm ...
0
votes
1answer
35 views
Grayscale Average Filter Opencv
I am just starting with programming in Opencv, I am trying to implement a simple average filter. I understand that there is a in built function in OpenCv but I don't want to use this yet, I am looking ...
0
votes
0answers
19 views
Renaming folders according to the average date of contained files
I have almost 4000 different folders, each folder containing one ore more reports made on a special date within a range of 6 years ( 2008 - 2013).
I was wondering if there was a way to bulk-change ...
1
vote
2answers
70 views
C# - (int)Math.Round((double)(3514 + 3515)/2) =3514?
Helo everyone.
int[] ai1=new int[2] { 3514,3515 };
void average1()
{
List<int> aveList = new List<int> { ai1[0],ai1[1]};
double AveragLI = aveList.Average();
...
0
votes
0answers
69 views
Moving Average Weights Matlab
I want a dimension 5 weighted moving average for my vector Y in Matlab where the weights are automatically calculated using regression.
I have searched online and understand that if we already have ...
-6
votes
2answers
43 views
I can't write a python average function that will average 3 input integers from user. (average has to be in float) [closed]
Can't write a functional python code that asks users to enter three integers, pass through a function named (avg) and will return the average as a (float) value.
1
vote
1answer
55 views
LINQ - multi join with Group by and get avarage
SQL:
SELECT name_type, AVG(t.price) as avgPrice FROM type tp
JOIN location l ON l.ID_type = tp.ID
JOIN event e ON e.ID_location = l.ID
JOIN ticket t ON ...
0
votes
2answers
30 views
Average all values for a each field date
I'm trying to build a web app that analyzes survey results about movies, that are uploaded to the system manually by an administrator. The results are uploaded based on the date the survey was ...
1
vote
2answers
59 views
average of ragged double two dimensional array
my homework for my java coding class is asking me to find the average of a ragged two dimensional array of a double 2d array and a integer 2d array. I believe that my code is correct but instead of ...
0
votes
0answers
52 views
Mysql queries per second increases
We have a multiplayer game running so it is ok that we have many sql queries going on. BUT
When I check the mysqladmin status; I see
Queries per second avg: 136.052 and increasing each time I check, ...
2
votes
1answer
26 views
column with empty datapoints
date daily weekly monthly
1 11 88
2 12
3 45 44
4 54
5 45
6 45 66
7 77
8 78
9 71 99 88
For empty data points in weekly ...
1
vote
2answers
44 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
1answer
44 views
How to get the average number of data points?
Here is my data file :
12100 4592
14400 5000
16900 6443
12100 4479
14400 5393
16900 5969
12100 4605
14400 5353
16900 6268
I would like to have the ...
-1
votes
1answer
29 views
Read from file and average total
Python 3.x
Im trying to read from a file called numbers.txt. There are several rows of numbers in it. I need to print the total and average. Along with that I need to use exception handling for ...
-6
votes
1answer
71 views
What is the code to find the average of a multi-array for each row and each column [closed]
This is what I have to do with this code.
I just cannot figure out how to get the average when dealing with an array of arrays.
Write a nested loop that calculates the following:
The average ...
1
vote
3answers
73 views
Oracle ORDER BY with rownum or HAVING >= ALL
My database teacher asked me to write (on Oracle Server) a query: select the groupid with the highest score average for year 2010
I wrote:
SELECT * FROM (
SELECT groupid, AVG(score) average ...
-2
votes
2answers
79 views
Python take a list of numbers and return the average
got a question
Doing GCSE computing, and as a homework task I need to do the above. I'm only starting out with prigramming and I've been trying to figure out how to do it, but to no avail. I believe ...
0
votes
2answers
42 views
How to get the average price for the X most recent rows based on date?
I am looking to calculate moving averages over variable dates.
My database is structured:
id int
date date
price decimal
For example, I'd like to find out if the average price going back 19 ...
1
vote
1answer
23 views
Selecting values from different Dates R
I have a quick question using the following dataframe.
x <- c("2012-01-01","2012-01-01","2012-01-01","2012-01-02","2012-01-02","2012-01-03","2012-01-03")
y <- c(1,2,3,4,5,6,7)
data.frame(x,y)
...
0
votes
1answer
33 views
Get the average of elements values in xsl
I've been dealing with xsl for the first time today. The XML file I have looks like the following:
<student_course>
<students>
<student num="">
<name ...
-3
votes
1answer
32 views
Making an averaging program
I am trying to make a program that finds the average of a dynamic number of doubles but I need to reference items from other methods.
public int count = 0;
public double[] nums = new ...
0
votes
1answer
46 views
SQL Server AVG and Excel AVERAGE producing different results?
I'm trying to show averages on SQL server, but when I test the data in Excel the results are not the same, there must be something obvious I am missing.
Here is the code and results from SQL server:
...
0
votes
1answer
43 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 ...
1
vote
1answer
40 views
Interpreting VBA code for moving averages
While I roughly understood my coding at the time of writing it awhile back, I have since forgotten how to interpret the first few parts of it (in bold).
Why 'as long'? My understanding is that this ...
-2
votes
1answer
29 views
Find the average of a variable compared to fixed variable
So I have a short table of demographic data from a survey. Age, income, race, etc.
My HW question is as follows:
I would like you to determine, from your Tulsa data, whether age and income are
...
0
votes
2answers
66 views
Python- Finding average
I am trying to find the average number of times a user guesses a number. The user is asked how many problems they want to do and then the program will give them that many problems. I am having trouble ...
1
vote
1answer
79 views
How to query the average from a certain property in an Entity and return it in a List of List of objects in LINQ?
My entities designed in Entity Framework look like this:
Event
EventId
Date
Acceleration
Intensity
DeviceId
BlockId
Device
Block
Block
BlockId
DateStart
DateEnd
Events
Device
DeviceId
...
0
votes
1answer
56 views
Average of Int[]; Method not Returning
My task is to calculate the average of the Integers a user defines in an Array and print back to main using the method in my class file.
Currently I have both files to compile but can't seem to ...
0
votes
0answers
20 views
Calculating the average of the ints in an arraylist
I am currently trying to calculate the average of the ints in my arraylist.
I want the average Salary of three Assistants that i have added to my arraylist.
Assistant.java
public class Assistant
{
...



