The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
20 views

How to find the maximum edge-weighted clique?

The maximum clique problem(MC-problem) is a classical NP problem, and we could use branch-bound to solve this problem effectively. Recently, I try to develop an algorithm to find out the clique that ...
0
votes
0answers
27 views

Weighted correlation

I have two arrays of floats, and want to calculate the weighted correlation, meaning that I want some of my data to have lower weight than others. X Y w 2.02382 6.00298 ...
0
votes
1answer
31 views

All shortest paths for weighted graphs with networkx?

I have a graph composed by two different sets of edges. The first set is made by edges of weight 1 (list 1). The second set is made by edges of weight 2 (list 2). First, I create the graph with ...
0
votes
0answers
29 views

Simplify weighted grade formula

I am creating a grade book for someone with a specific format. The summary tab shows all student grades and has a total at the right with the weighted Final Course percentage which is calculated like ...
0
votes
1answer
51 views

Aggregating weekly (7 day) data to monthly in R

I have data measured over a 7 day period. Part of the data looks as follows: start wk end wk X1 2/1/2004 2/7/2004 89 2/8/2004 2/14/2004 65 2/15/2004 2/21/2004 64 2/22/2004 ...
1
vote
1answer
83 views

Weight cases for cross tabulation, with means

I like to weight cases to plot graphs in ggplot. I have a specific weight factor for each case, for instance: value weight 2 0.34 5 0.75 6 2.31 and so on... Plotting simple grouped bars ...
1
vote
1answer
187 views

Creating a weighted undirected graph in “igraph” in C/C++

Problem: I want to make a weighted undirected graph from adjacency matrix stored in a .csv file using igraph and then do the minimum spanning tree and some other algorithms on it. I started with ...
0
votes
2answers
61 views

R - random numbers in a similar distribution to real numbers

This is a very simplified example but hopefully it gives everyone an idea what I'm talking about: real.length = c(10,11,12,13,13,13,13,14,15,50) random.length = vector() for (i in ...
0
votes
5answers
50 views

Pass a formula into a method [closed]

I'm attempting to make a method that makes a random number weighted based on a formula, like if the formula was y=x 5 would be 5 times more likely to be returned than 1, or if the formula was y=x^2 4 ...
3
votes
3answers
68 views

Apply the corr function to a matrix using levels of a factor?

I'm trying using the corr() function to calculate weighted ponderations. The way it works is the first argument should be a matrix with two columns corresponding to the two variables whose correlation ...
0
votes
1answer
260 views

Minimal spanning tree using prim's algorithm, don't know what is wrong

First of all I'll state that I'm not asking for any code or complete solutions. I'll describe the problem: You are given number of rooms in a building and number of hallways between them. Every ...
0
votes
0answers
160 views

Plotting a normal curve on top of a weighted histogram

I have a dataset which requires me to plot a weighted histogram because of the data gridcellname value avg.temp Y55X21 4,84 4,09 Y56X17 0 5,34 Y44X44 2,75 ...
0
votes
1answer
97 views

FusionTables Heatmap Layer Weighting

Is it possible to weight restults within a FusionTables heatmap layer? For example, in my FusionTable dataset I have latitude, longitidue, and counts. I'm not sure how to modify my layer to be ...
0
votes
0answers
79 views

What software can I use to draw weighted Voronoi diagrams?

I'm trying to draw a Voronoi diagram where each region's color intensity reflects the region's weight, so I have a csv file of the form: x,y,weight and I want a software that uses the coordinates ...
0
votes
1answer
121 views

Weighted sum of adjacent values in numpy array

What is the easiest/fastest way to take a weighted sum of values in a numpy array? Example: Solving the heat equation with the Euler method length_l=10 time_l=10 u=zeros((length_l,length_l))# (x,y) ...
3
votes
5answers
311 views

How to weight a random number based on an array

I've been thinking about how to implement something that, frankly, is beyond my mathematical skills. So here goes, feel free to try and point me in the right direction rather than complete code ...
0
votes
1answer
153 views

weighted interval scheduling with minimum number of job requirement

The question is i have classic weighted interval scheduling problem but there is a extra requirement. This requirement is, from the given jobs, some number of job must be done. I already solve it ...
0
votes
1answer
23 views

Ontology Management Program supporting Weighted Relations between nodes

I am looking for ontology management services which can handle "bi-relation" for example, suppose that there are nodes "Tiger" and "Lion" We want to describe quantitive relation between the nodes : ...
0
votes
4answers
80 views

undirected weighted graph to xml

I want to represent an undirected graph, like this one : http://cnx.org/content/m29399/latest/Picture%202.png into an xml file. I'm not really sure how to begin. EDIT: I want the data in xml ...
0
votes
1answer
263 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 ...
4
votes
3answers
116 views

randomly do action with weighted values [closed]

lets say I have 5 outcomes Console.WriteLine("1"); Console.WriteLine("2"); Console.WriteLine("3"); Console.WriteLine("4"); Console.WriteLine("5"); I want to randomly do one of the above actions ...
0
votes
2answers
136 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
90 views

Over Partition By not working for Weighted AVG Calc

I don't know how I am missing this, but I am sure it's from late nights! Any help appreciated let's say we are using NorthWind to Calculate Weighted AVG USE NORTHWIND Select ...
-5
votes
2answers
273 views

Grade calculator [closed]

I'm new to java and android and still learning the basics. I'm currently undertaking a task where I've got to create a weighted average grade calculator. Got the UI sorted in terms of the XML file but ...
2
votes
1answer
181 views

Percentile calculation with weighted data

I've been struggling to find a way of calculating percentiles of a vector X given weights W that is continuous in W at zero. That is, as an element of W tends to zero, I would want the result of the ...
3
votes
2answers
572 views

Finding all paths in directed graph with specific cost

Suppose we have the directed, weighted graph. Our task is to find all paths beetween two vertices (source and destination) which cost is less or equal =< N. We visit every vertex only once. In ...
0
votes
1answer
46 views

Relevance algorithm

Let's say I want to order some products based on two variables: rating and the number of ratings. For example, let's say I have these 2 products: Product A 4.9 of 10000 Product B 5.0 of 1 It's ...
2
votes
2answers
314 views

Fastest way to take the weighted sum of the columns of a matrix in R

I need the weighted sum of each column of a matrix. data <- matrix(1:2e7,1e7,2) # warning large number, will eat up >100 megs of memory weights <- 1:1e7/1e5 ...
0
votes
1answer
103 views

Matlab+ Graph theory+ specific weight assignment

I want to assign weights to the edges such that the Sum of (the weights coming to a node) and its own weight add to one. here is what I tried: clear all; close all; clc; %% building ...
0
votes
1answer
100 views

Calculate weighted mean point from array of 3D points

I am writing the program in Cocoa but I think that the solution must be quite universal. I have a set of points represented by 3D vectors. Each point has a weight assigned to it. The weight is in the ...
1
vote
0answers
67 views

Weighted Random over a set of [low, high] value pairs

I have a list of { keyword: [low, high], keyword1: [low1, high1], keyword2: [low2, high2] ... } and I would like to run a weighted random algorithm over it to select a keyword for every request. Would ...
1
vote
3answers
90 views

Weighted random integers

I want to assign weightings to a randomly generated number, with the weightings represented below. 0 | 1 | 2 | 3 | 4 | 5 | 6 ───────────────────────────────────────── X | X | X | ...
0
votes
0answers
62 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
2answers
978 views

weighted quick union with path compression algorithm java

i don't get one thing. there is a "weighted quick-union with path compression" algorithm. the code: public class WeightedQU { private int[] id; private int[] iz; public WeightedQU(int ...
0
votes
0answers
163 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 ...
1
vote
1answer
335 views

How to calculate individual weighted score for each set?

I have 20 questions and they are further divided in to a set of 4 questions 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 marks ...
0
votes
2answers
173 views

Algorithm to perform weighted shuffle with gradual bubbling up of list items

I'm wondering if anyone knows of a simple algorithm for performing a shuffle of a list that permits a weight bias so that each item in the list works its way toward the top of the list at the same ...
3
votes
2answers
251 views

Algorithm for optimal pairing strategy of items in two ordered lists while maintaining order

I have the the following two ordered lists of items: A = ["apples","oranges","bananas","blueberries"] B = ["apples","blueberries","oranges","bananas"] Each item has a score which is equal to the ...
0
votes
1answer
128 views

Finding path of zero/Negative weight between Two Nodes on Graph by Utilizing Negative Cycles

I really struggled with describing this in the title but I'll give it a go in a longer format. I'm really stumped on this problem and I'm not looking for answers, just a little help or some specific ...
0
votes
2answers
181 views

Django multi-criteria weighted rating

I've started building an app in Django that will require multi-criteria weighted ratings. My issue is the exact same as this one from a few years ago, which unfortunately did not have any answer. If ...
-1
votes
2answers
240 views

Weighted average from an array

I have to write the following weighted average formula in JavaScript: Average = (p1*p2*x1 + p3*p4*x2 + ... +p(n-2)*p(n-1)*xn) / (p1*p2 + p3*p4 + ... + p(n-2)p(n-1) ) The formula gives the ...
1
vote
0answers
189 views

Weighted Least Squares to find Best Fit Line

I am trying to find out the Line of best fit for a number of data points (x,y). I am using the method of least squares as described here http://faculty.cs.niu.edu/~hutchins/csci230/best-fit.htm ...
0
votes
0answers
449 views

PHP code for multiple-keyword with weighted-results SQL search

My question is closely related to this previous post which was quite helpful but I still can't get it working right. Php MySql Query with Multiple Keyword for Multiple Fields I have < 10,000 rows ...
1
vote
3answers
445 views

JavaScript weighted random or percent of the time

I have a Node.js process (setInterval) that runs every 100ms. I have certain actions that I want to take every x period of time. So for example, 2% of the time do X, 10% of the time do Y, etc. ...
1
vote
2answers
320 views

Find maximum weighted sum over all m-subsequences

I was trying to solve the following problem: Weighted Sum Problem The closest problem I have done before is Kadane's algorithm, so I tried the "max ending here" approach, which led to the following ...
1
vote
2answers
466 views

Drawing graphs with weight edges C# [closed]

I would like to make a desktop application similar to this one http://www.dgp.toronto.edu/~jstewart/270/9798s/Laffra/DijkstraApplet.html The application has to be able to graphically add nodes and ...
3
votes
1answer
1k views

“weighted” regression in R

I have created a script like the one below to do something I called as "weighted" regression: library(plyr) set.seed(100) temp.df <- data.frame(uid=1:200, ...
1
vote
2answers
124 views

Non-bipartite non-weighted maximum matching between users

The situation: A user selects multiple other users as possible partners for a project. The user has no preference for one user he picks over another (i.e. any user in his list is good enough for a ...
1
vote
1answer
168 views

How to sort a collection of objects, which has to be sorted based on some constantly changing parameters

I'm looking on how to sort a list effectively using weighted values. Each item has an id, name and filepath. Each item also has a list of values which are assigned a percentage, showing how relevant ...
1
vote
2answers
2k views

Calculating weighted mean and standard deviation

I have a time series x_0 ... x_t. I would like to compute the exponentially weighted variance of the data. That is: V = SUM{w_i*(x_i - x_bar)^2, i=1 to T} where SUM{w_i} = 1 and x_bar=SUM{w_i*x_i} ...

1 2