Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
2answers
336 views

Plot weighted frequency matrix

This question is related to two different questions I have asked previously: 1) Reproduce frequency matrix plot 2) Add 95% confidence limits to cumulative plot I wish to reproduce this plot in R: ...
9
votes
4answers
212 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: ...
5
votes
3answers
187 views

Select a random item from a weighted list

I am trying to write a program to select a random name from the US Census last name list. The list format is Name Weight Cumulative line ----- ----- ----- - SMITH ...
5
votes
4answers
1k views

Gomoku array-based AI-algorithm?

Way way back (think 20+ years) I encountered a Gomoku game source code in a magazine that I typed in for my computer and had a lot of fun with. The game was difficult to win against, but the core ...
4
votes
4answers
66 views

How can I get a weighted random pick from Python's Counter class?

I have a program where I'm keeping track of the success of various things using collections.Counter — each success of a thing increments the corresponding counter: import collections scoreboard = ...
4
votes
1answer
268 views

SQL Server 2008 Containstable generate negative rank with weighted_term

I have a table with full text search enabled on Title column. I try to make a weighted search with a containstable but i get an Arithmetic overflow for the Rank value. The query is as follow SELECT ...
4
votes
3answers
554 views

Weighted standard deviation in NumPy?

numpy.average() has a weights option, but numpy.std() does not. Do folks have suggestions for a workaround? Thanks! /YGA
3
votes
1answer
97 views

Subtracting from random values in a weighted matrix in R

and thanks in advance for your help! This question is related to one I posted before, but I think it deserves its own post because it is a separate challenge. Last time I asked about randomly ...
2
votes
4answers
109 views

Weighted win percentage by number of games played

Im looking to create a ranking system for users on a gaming site. The system should be based of a weighted win percentage with the weighted element being the number of games played. For instance: ...
2
votes
4answers
155 views

Weighted Search Algorithm for PHP

Problem I have 5 items in a table [1], each item has 4 attributes (red, green, blue, yellow). Each attribute can be given a score between 1 and 9 [2]. When performing a search on my website users ...
2
votes
4answers
117 views

How to pick 4 unique items from a weighted list?

So I've got a list of weighted items, and I'd like to pick 4 non-duplicate items from this list. Item Weight Apple 5 Banana 7 Cherry 12 ... Orange 8 Pineapple 50 What is the most ...
1
vote
2answers
71 views

Coming up with factors for a weighted algorithm?

I'm trying to come up with a weighted algorithm for an application. In the application, there is a limited amount of space available for different elements. Once all the space is occupied, the ...
1
vote
4answers
76 views

Giving Range to the SQL Column

I have SQL table in which I have column and Probability . I want to select one row from it with randomly but I want to give more chances to the more waighted probability. I can do this by Order ...
1
vote
2answers
119 views

How to build in Java a Weighted Directed Acyclic Graph

I did a search on similar topics, but the answers are too vague for my level of understanding and comprehension, and I don't think they're specific enough to my question. Similar threads: Tree ...
1
vote
1answer
130 views

random algorithm with priority to one end

iam writing a little program with GUI in C++ and Qt. It is supposed to be similar to a vocabulary trainer. I will use it for my own studying. I do have a QList of objects in it(name and description ...
1
vote
1answer
147 views

How to implment a weighted percentile with MySQL

I have a large data set which includes the prices a particular product is sold at across stores. I need to found the lowest and highest price at which 80% of sales occurred. for example with the ...
1
vote
2answers
255 views

ANDROID: Weighted Linear List Buttons disappear

I have seen many posts about this and have tried many of the solutions but for some reason nothing is working. I just want the buttons to share equal space... Can you please look at my xml code and ...
1
vote
1answer
187 views

Weighted Keyword Search

Hello: I want to do a "weighted search" on product that are tagged with keywords. (So: not fulltext search, but n-to-m-relation). So here it is: Table 'product': sku - the primary key name Table ...
1
vote
1answer
121 views

PHP Game weapon accuracy

I'm trying to come up with a way for players to fire their weapons and only hit for a certain percentage. For example, one gun can only hit 70% of the time while another only hits 34% of the time. So ...
1
vote
1answer
123 views

Random selection while breaking down by percentage over multiple groups

I'm trying to put together a simple system for a user to generate a list of users to whom surveys will be sent. The list generation may depend on various constraints. For example, "we only want people ...
0
votes
2answers
35 views

Weighted Shuffle of an Array or Arrays?

What is a good algorithm that shuffles an array or arrays using weights from the nested arrays? Example: $array = array( array("name"=>"John", "rank"=>3), array("name"=>"Bob", ...
0
votes
1answer
37 views

Scoring solr results by relevancy AND category

We are using Solr 1.4 to produce results for user queries. The results are fetched from an index containing approximately 500k documents. The index is constantly being updated with new documents and ...
0
votes
4answers
69 views

How to randomize a PHP array of records, giving more weight to more recent items?

I have an array of records from a database (although the database is irrelevant to this question -- it eventually becomes an array of "rows", each row is an array with string keys corresponding to the ...
0
votes
2answers
66 views

(while doing weighted sorting) How to allocate different coefficients to fields per request?

(I'm attaching both Solr and SQL as tags because I don't know what to use in such situation. Maybe even something else) Example: Web application that must sort tasks based on Time and Price. The ...
0
votes
2answers
173 views

Weighted random number generation C#

I have been trying to search answer for this, but all discussions that I have found are either in language that I don't understand or relies on having a collection where each element has its own ...
0
votes
1answer
52 views

Scheduling problem: Does this have a name?

I have the following problem: There are N items A(n) and associated weights W(n) for n=0...N-1. Generate a sequence S(t) (where t= 0,1,2,3,...,T-1) of items chosen from A(n) such that: ...
0
votes
1answer
290 views

Weighted sum of elements in matrix - Matlab?

I have two 50 x 6 matrices, say A and B. I want to assign weights to each element of columns in matrix - more weight to elements occurring earlier in a column and less weight to elements occurring ...
0
votes
0answers
46 views

Print edge weight instead (start vertex;end vertex)

I have ListenableDirectedWeighted Graph and want to print edge weight instead (start vertex;end vertex). How can I do it?
0
votes
1answer
246 views

Jung weighted edges from graphml

I am using Jung 2.0. I have a graphml file with weighted edges. I am using a graphml reader to read the file and create the graph. When I visualize the graph with a FRLayout, I observe that the graph ...
0
votes
4answers
170 views

Weighted conditions in the where clause of a SQL statement

I'm not SQL expert; I only know basics, but I imagine what I want must be possible. Due to the nature of even describing it though, it's somewhat difficult to search the web or stackoverflow for ...
0
votes
1answer
81 views

Deterministically assign an id in a list of weighted buckets

I'm running n split tests on a website. I want to assign an evenly distributed integer user id to one of the n buckets, and deterministically so the same user always gets the same test. At this ...
0
votes
1answer
67 views

Search weighted graph, lowest cost, remember route

Is there a rgaph searching algorithm that searches through a graph (from point a to point b, at the lowest cost possible - this is on a weighted graph) that remembers the path that it takes (e.g. not ...
-1
votes
1answer
104 views

Weighted graph problems, TRUE/FALSE + explanation

I'm trying to get some true/false questions done. I'm getting worried when I'm answering many of them with true... Please assume that all graphs are undirected and do not have distinct weights. ...