The weighted average or weighted mean is similar to an arithmetic mean where instead of each of the data points contributing equally to the final average, some data points contribute more than others.

learn more… | top users | synonyms

0
votes
1answer
6 views

Weighted percentages by group in Crystal Reports

I'm stumped on the following as I'm trying to display an accurate weighted percentage in group footer using the following formula which seems to work for the grand total only: ...
1
vote
1answer
39 views

How do I check for duplicate rows and do calculate on that rows in excel file?

I have one excel file which is having data like following CUSIP Quantity Date Price AF0 500000 5/6/2013 1 AE4 400000 5/6/2013 1.0825 AE4 500 5/6/2013 ...
1
vote
1answer
33 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 ...
3
votes
1answer
112 views

Creating a Weighted Average - Dropping Weights for NULL values

So there's the SQL Function AVG(), which takes the average of all values in a column, ignoring all NULL values. If one needs to make a weighted average, then they'd just use SUM(value * ...
0
votes
1answer
26 views

Weighting output of cost function based on user input

Hi I am creating an android app that will generate a cycling route for users using a route finder. I am trying to allow the user to either prefer distance or routes with cyclelanes present. I have a ...
0
votes
0answers
69 views

implementing lowess method

I am trying to reimplement lowess algorithm in java. I read in the matlab page explaining the lowess with the follwing steps: Compute the regression weights for each data point in the span. A ...
0
votes
1answer
81 views

Approximate factors in an average calculation

here is what I want to do: I have an double[] of size N (N will not be larger than 500 but different applications of this program will have different Ns). I now want to find out what combinations I ...
1
vote
1answer
66 views

Weighted sum of series in Graphite

I'm working with series of response times from different servers in Graphite, and I have separate series showing the number of requests from each server. Now what I'd like to do is compute a weighted ...
0
votes
1answer
266 views

calculate mean and variance for weighted discrete random variables in R

I have the following data frame: dat <- read.table(text=" X prob 1 1 0.1 2 2 0.2 3 3 0.4 4 4 0.3", header=TRUE) Is there any built-in function or elegant way to calulate mean and variance ...
0
votes
2answers
138 views

How do I calculate the importance/weight of input based on users reputation?

I have a couple systems which contain a users' table along with some form of karma/weight/reputation. Sometimes it's the number of posts a user has made, sometimes it's the number of up/down votes a ...
0
votes
1answer
37 views

Weighted vote handling for RDBMS

I have three tables in my RDBMS (most often MySQL or Postgresql) which I want to use when calculating votes. The first is a user table where users have different levels of pull (weight), the second is ...
1
vote
1answer
74 views

inconsistent results for weighted average in numpy masked arrays

When I calculate a weighted average in a masked array that is fully masked, I get different results for weights=None or weights=1: import numpy.ma as ma a = ma.arange(2.) a[:] = ma.masked ...
0
votes
1answer
102 views

Edge weight calculation based on real traffic street data

I am currently developing a navigation system in android and I am using dijkstra's shortest path algorithm My Vertex class contains members as shown below: ------------------------------------- | ...
0
votes
0answers
63 views

Weighted Voting Calculation with 1 Extra Criterion

I have been over a number of post relating to the subject but none seem to match my requirements. I thought I was onto something with the links offered in this post but they are missing an extra ...
0
votes
0answers
165 views

How to represent weighted score average calculation in sigma notation?

I have 20 questions and they are further divided in to a set of 4 questions in each which means there are total 5 sets A, B, C, D and E. Each question has 5 marks so in a set the maximum number of ...
-2
votes
3answers
136 views

Weighted average of pair elements in a vector in R

I have two vectors x and w. vector w is a numerical vector of weights the same length as x. How can we get the weighted average of the fisrt pair elements in vector x which their difference are small ...
2
votes
1answer
58 views

Multiplicative Filter or more standard Additive Weighting

I have several features which can vote of whether a certain data item is worthy of showing to my users. You can think of each of them as a number between 0 and 1 where 1 means it is good and 0 means ...
0
votes
1answer
206 views

How do I perform an “average days since event” type query in mdx?

I have a cube that I have in the past used to report on counts of events. Let's say for the month of July I want to break down the number of events that have occurred for each product. I'd have ...
0
votes
1answer
82 views

If statement for weighted averaged in R

I have a data file that is several million lines long, and contains information from many groups. Below is an abbreviated section: MARKER GROUP1_A1 GROUP1_A2 GROUP1_FREQ GROUP1_N ...
2
votes
1answer
137 views

Weighted Average Fields

I'm totally new to doing calculations in T-SQL. I guess I'm wondering what is a weighted average and how do you do it in T-SQL for a field? First off as far as I know a weighted average is simply ...
3
votes
2answers
445 views

How to calculate mix of 4 colors defined in CIELAB L*a*b* model?

I have 4 colors that I converted from RGB to CIELAB L*a*b* model. How can I calculate mix of these 4 colors when I have (L,a,b) for each such color? How can I calculate same mix, if I want to put ...
2
votes
1answer
172 views

Weighted mean of similar elements in a vector in R

I have two vectors x and w. w is a numerical vector of weights the same length as x giving the weights to use for elements of x. I would like to give weighted mean of the elements in vector x which ...
3
votes
3answers
819 views

Calculate a weighted (Bayesian) average score/index in stored procedure?

I have an MS SQL Server 2008 database where I store places that serve food (cafés, restaurants, diners etc.). On a web site connected to this database people can rate the places on a scale from 1 to ...
4
votes
5answers
2k views

How to calculate iteratively the running weighted average so that last values to weight most?

I want to implement an iterative algorithm, which calculates weighted average. The specific weight law does not matter, but it should be close to 1 for the newest values and close to 0 to the oldest. ...
2
votes
2answers
259 views

Replacing for-loops with apply to improve perfomance (with weighted.mean)

I am a R newbie so hopefully this is a solvable problem for some of you. I have a dataframe containing more than a million data-points. My goal is to compute a weighted mean with an altering starting ...
10
votes
4answers
471 views

Whats the most concise way to pick a random element by weight in c#?

Lets assume: List<element> which element is: public class Element(){ int Weight {get;set;} } What I want to achieve is, select an element randomly by the weight. For example: ...
4
votes
1answer
904 views

How to provide most relevant results with Multiple Factor Weighted Sorting

I need to provide a weighted sort on 2+ factors, ordered by "relevancy". However, the factors aren't completely isolated, in that I want one or more of the factors to affect the "urgency" (weight) of ...
3
votes
3answers
578 views

Data structure/algorithm to efficiently save weighted moving average

I'd like to sum up moving averages for a number of different categories when storing log records. Imagine a service that saves web server logs one entry at a time. Let's further imagine, we don't have ...
1
vote
3answers
115 views

Adjusting votes based on different numbers of voters

I have a 1 to 5 voting system and i'm trying to figure out the best way to find the most popular item voted on, taking into consideration the total possible number of votes cast. To get a vote total, ...
0
votes
1answer
3k views

How to calculate the weighted average over a cell-array of arrays?

In generalisation of my previous question, how can a weighted average over cell elements (that are and shall remain arrays themselves) be performed? I'd start by modifying gnovice's answer like ...
7
votes
1answer
759 views

How to aggregate timeseries in Python?

I have two different timeseries with partially overlapping timestamps: import scikits.timeseries as ts from datetime import datetime a = ts.time_series([1,2,3], dates=[datetime(2010,10,20), ...
1
vote
3answers
929 views

Weighted Average with a negative number

Let's say you need to display a graphical representation of how well a baseball team is doing (my software problem is not related to sports but...). Let say you chose that 25% of a gauge is related ...
1
vote
2answers
1k views

How would YOU compute IMDB movie rating?

I'm doing this only for learning purposes. I've no intentions of reversing the methods of IMDB. I asked myself I owned IMDB or similar website. How would I compute the movie rating? All I can think ...
5
votes
7answers
1k views

Compute weighted averages for large numbers

I'm trying to get the weighted average of a few numbers. Basically I have: Price - 134.42 Quantity - 15236545 There can be as few as one or two or as many as fifty or sixty pairs of prices and ...
2
votes
3answers
3k views

Weighted Average with LINQ

My goal is to get a weighted average from one table, based on another tables primary key. Example Data: Table1 Key WEIGHTED_AVERAGE 0200 0 Table2 ForeignKey LENGTH PCR 0200 ...
2
votes
2answers
1k views

Weighted Average and Ratings

Maths isn't my strong point and I'm at a loss here. Basically, all I need is a simple formula that will give a weighted rating on a scale of 1 to 5. If there are very few votes, they carry less ...
2
votes
1answer
1k views

MySQL Rating/Voting system (accurratly ordering by best rated taking into account number of votes)

Let's say I have a MySQL table that is something like this: software table: id int name text votes int rating int Where votes would be the number of times someone has voted for that item and ...
10
votes
6answers
574 views

Adjust items chance to be selected from a list

I have a list of items. When I create the list each item has equal chance to be selected. But as an item is selected its chance goes down while the others chance goes up. If a new item is added ...
0
votes
1answer
2k views

SQL Server AVG function oddity

I am seeing some odd behavior in SQL Server AVG calcuation. On manual calculation, you get 49.277588 but SQL Server is reporting that the average is 50.9914 as shown below. Question: Can someone ...
9
votes
4answers
2k views

How to calculate scores?

This question is more related to logic than any programming language. If the question is not apt for the forum please do let me know and I will delete this. I have to write a logic to calculate ...
0
votes
2answers
5k views

How to add a weighted average summary to a DevExpress XtraGrid?

The DevExpress Grid (XtraGrid) allows grids and their groups to have summary calculations. The available options are Count, Max, Min, Avg, Sum, None and Custom. Has anyone got some sample code that ...