Tagged Questions
The ranking tag has no wiki summary.
25
votes
8answers
7k views
A better similarity ranking algorithm for variable length strings
I'm looking for a string similarity algorithm that yields better results on variable length strings than the ones that are usually suggested (levenshtein distance, soundex, etc).
For example,
Given ...
16
votes
4answers
15k views
“Most popular” GROUP BY in LINQ?
Assuming a table of tags like the stackoverflow question tags:
TagID (bigint), QuestionID (bigint), Tag (varchar)
What is the most efficient way to get the 25 most used tags using LINQ? In SQL, ...
13
votes
9answers
1k views
1 vs 1 vote: calculate ratings (Flickchart.com)
Instead of rating items with grades from 1 to 10, I would like to have 1 vs 1 "fights". Two items are displayed beside each other and you pick the one which you like more. Based on these "fight" ...
9
votes
6answers
1k views
Algorithm to calculate a page importance based on its views / comments
I need an algorithm that allows me to determine an appropriate <priority> field for my website's sitemap based on the page's views and comments count.
For those of you unfamiliar with sitemaps, ...
7
votes
7answers
322 views
Ranking with millions of entries
I'm working on a server for an online game which should be able to handle millions of players. Now the game needs leaderboards and wants to be able to show a players current position and possibly ...
7
votes
3answers
2k views
selecting top N rows for each group in a table
I am facing a very common issue regarding "Selecting top N rows for each group in a table".
Consider a table with id, name, hair_colour, score columns.
I want a resultset such that, for each hair ...
7
votes
3answers
5k views
mysql: Using LIMIT within GROUP BY to get N results per group?
The following query:
SELECT
year, id, rate
FROM h
WHERE year BETWEEN 2000 AND 2009
AND id IN (SELECT rid FROM table2)
GROUP BY id, year
ORDER BY id, rate DESC
yields:
year id rate
2006 p01 ...
6
votes
4answers
317 views
TunkRank in Mathematica
I'm trying out Mathematica for the first time and using TunkRank as my algorithm of choice. Here is what I came up with:
Following = {{2, 3, 4}, {0, 4}, {1, 3}, {1, 4}, {0, 2}}
Followers = {{1, 4}, ...
6
votes
2answers
412 views
hacker news algorithm in php?
this is the hacker news ranking algorithm, which i think is a simple way of ranking things, espcially if users are voting on items, but i really dnt understand this, can this be converted to php, so i ...
6
votes
2answers
503 views
Sorting A List Of Songs By Popularity
For student council this year, I'm on the "songs" committee, we pick the songs. Unfortunately, the kids at the dances always end up hating some of the stupid song choices. I thought I could make it ...
6
votes
2answers
1k views
Efficient method to calculate the rank vector of a list in Python
I'm looking for an efficient way to calculate the rank vector of a list in Python, similar to R's rank function. In a simple list with no ties between the elements, element i of the rank vector of a ...
6
votes
4answers
321 views
How to balance number of ratings versus the ratings themselves?
For a school project, we'll have to implement a ranking system. However, we figured that a dumb rank average would suck: something that one user ranked 5 stars would have a better average that ...
6
votes
6answers
2k views
Voting algorithm: how to calculate rank?
I am trying to figure our a way to calculate rank. Right now it simply takes ratio of wins / losses of each individual entry, so e.g. one won 99 times out of a 100, it has 99% winning rank. BUT if an ...
5
votes
1answer
520 views
How are Reddit and Hacker News ranking algorithms used?
I've been looking at ranking algorithms recently, specifically those used by Reddit and Hacker News. The algorithms themselves are simple enough, but I don't quite understand how they are used.
One ...
5
votes
3answers
736 views
Comparison Based Ranking Algorithm
I would like to rank or sort a collection of items (with size potentially greater than 100,000) where each item in the collection does not have an intrinsic (comparable) value, instead all I have is ...
5
votes
2answers
198 views
What is a “safety variable”?
I was just reading an article about different ranking algorithms. One thing I'm a bit confused about is stumbleupon's algoritm:
(Initial stumbler audience / # domain)
+ ((% stumbler audience / ...
4
votes
2answers
151 views
Simple ranking algorithm
I need to create a poll that is to create a ranking list of items in order of how good they are. I intend to show each user two items together and make them choose one which they think is better, and ...
4
votes
1answer
295 views
Implementing the Hacker News ranking algorithm in SQL
Here's how Paul Graham describes the ranking algorithm for Hacker News:
News.YC's is just
(p - 1) / (t + 2)^1.5
where p = points and t = age in hours
I'd like to do that in pure mySQL ...
4
votes
2answers
148 views
How to mitigate against bandwagon effect (voting behavior) in my ranking system?
What I mean by bandwagon effect describes itself like so:
Already top-ranked items have a higher tendency to get voted on at all, possibly even to get upvoted.
What I am hoping to get is some ...
4
votes
4answers
514 views
MySQL update statement to store ranking positions
I'm trying to get my head around a query and I just can't figure it out. I would appreciate if someone give me a pointer. As a simple example of what I'm trying to achieve, I have these records in the ...
4
votes
5answers
298 views
Does the CSS property “text-transform” affect SEO results?
I am building a site with a ton of 1999 style capitalization of navigation and headings. I have been simply adding in the text content as it appears (capitalized), but the other designer on the ...
4
votes
4answers
859 views
SQL - select distinct records in one field with highest records from another field
In a scenario where I have a table like so:
int id (PK)
int staff_id
int skill_id
bit mainskill
I want to select only ONE record for each staff member (represented by staff_id) listing their main ...
4
votes
2answers
818 views
How does twitter's trending topics algorithm decide which words to extract from tweets?
I saw this question, which focuses on the "Brittney Spears" problem. But I have a bit of a different question. How does the algorithm determine which words or phrases need to be ranked? For ...
4
votes
5answers
368 views
Cake Comparison Algorithm
This is literally about comparing cakes. My friend is having a cupcake party with the goal of determining the best cupcakery in Manhattan. Actually, it's much more ambitious than that. Read on.
...
4
votes
5answers
3k views
C# Ranking of objects, multiple criteria
I am building a plugin for a LAN party website that I wrote that would allow the use of a Round Robin tournament.
All is going well, but I have some questions about the most efficient way to rank ...
3
votes
2answers
118 views
big.matrix as data.frame in R
I've recently started using R for data analysis. Now I've got a problem in ranking a big query dataset (~1 GB in ASCII mode, over my laptop's 4GB RAM in binary mode). Using bigmemory::big.matrix for ...
3
votes
4answers
832 views
String similarity algorithims?
I need to compare 2 strings and calculate their similarity, to filter down a list of the most similar strings.
Eg. searching for "dog" would return
dog
doggone
bog
fog
foggy
Eg. searching for ...
3
votes
2answers
114 views
SQL Server 2000: Length of field in 1/3 (or 2/3) of the records
Is there a simpler/cleaner way to do this using SQL Server 2000?
Every few days I need to do this.
I first look at how many records we have total:
SELECT COUNT(*) FROM MyTable
Then I list all the ...
3
votes
3answers
293 views
How I can create a new ties.method with the R rank() function?
I'm trying to order this dataframe by population and date, so I'm using the order() and rank() functions:
idgeoville date population
1 5 1950 500
2 8 1950 450
3 4 ...
3
votes
2answers
493 views
Join single row from a table in MySQL
I have two tables players and scores.
I want to generate a report that looks something like this:
player first score points
foo 2010-05-20 19
bar 2010-04-15 ...
3
votes
3answers
770 views
mysql: group by ID, get highest priority per each ID
I have the following mysql table called "pics", with the following fields and sample data:
id vehicle_id filename priority
1 45 a.jpg 4
2 45 b.jpg 1
3 ...
3
votes
4answers
233 views
Keyword sorting algorithm
I have over 1000 surveys, many of which contains open-ended replies.
I would like to be able to 'parse' in all the words and get a ranking of the most used words (disregarding common words) to spot ...
3
votes
4answers
783 views
ranking entries in mysql table
I have a MySQL table with many rows. The table has a popularity column. If I sort by popularity, I can get the rank of each item. Is it possible to retrieve the rank of a particular item without ...
3
votes
2answers
441 views
Displaying a single rank in MySQL table
I have a table called 'highscores' that looks like this.
id udid name score
1 1111 Mike 200
2 3333 Joe 300
3 4444 Billy 50
4 ...
3
votes
2answers
2k views
Row Rank in a MySQL View
I need to create a view that automatically adds virtual row number in the result. the graph here is totally random all that I want to achieve is the last column to be created dynamically.
> ...
3
votes
1answer
340 views
Precedence/weight to a column using FREETEXTTABLE in dymnamic TSQL
I have dynamic sql that perform paging and a full text search using CONTAINSTABLE which works fine. Problem is I would like to use FREETEXTTABLE but weight the rank of some colums over others
Here is ...
3
votes
11answers
1k views
Find largest and second largest element in a range
How do I find the above without removing the largest element and searching again? Is there a more efficient way to do this? It does not matter if the these elements are duplicates.
3
votes
8answers
477 views
Best way to update user rankings without killing the server
I have a website that has user ranking as a central part, but the user count has grown to over 50,000 and it is putting a strain on the server to loop through all of those to update the rank every 5 ...
3
votes
3answers
2k views
Search Ranking/Relevance Algorithms
When developing a database of articles in a Knowledge Base (for example) - what are the best ways to sort and display the most relevant answers to a users' question?
Would you use additional data ...
2
votes
1answer
67 views
Update the rank column based on the total of a group
I wrote the following code in SQLite:
CREATE TABLE payments (
customerNumber REAL NOT NULL,
checkNumber TEXT NOT NULL,
paymentDate TEXT NOT NULL,
amount REAL NOT NULL,
rank REAL default 0,
...
2
votes
3answers
110 views
How is this comparison/ranking algorithm called?
I've seen some sites where they show two random items from a list, and users pick which one they prefer, and then based on the results of the user preferences, a ranking is generated for the entire ...
2
votes
2answers
128 views
Find intersection of two multi-dimensional Arrays in C# 4.0
Trying to find a solution to my ranking problem.
Basically I have two multi-dimensional double[,] arrays. Both containing rankings for certain scenarios, so [rank number, scenario number]. More than ...
2
votes
4answers
88 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
1answer
73 views
Solr deletes/optimizes affecting ranking score
anyone know why Solr's ranking is affected by deleting (but not purging) documents?
ie. if I add a document and search for it, its score might be 4.7 but then if I re-add it (ie Solr deletes the old ...
2
votes
2answers
75 views
Help on Elo System specifics for large group competitions
I'm trying to implement an Elo-based ranking system for the sport my website deals with.
There's a few thousand competitors, and each competition sees anything from 50 to 500 of them go against the ...
2
votes
2answers
63 views
Returning a result with incremented rows in MS SQL Server 2008
How do I return a row and an ascending counter as a result set?
2
votes
1answer
155 views
Adding an extra factor (number of clicks) to a Bayesian ranking system
I run a music website for amateur musicians where we have a rating system based on a score out of 10, which is then calculated into an overall score out of 100. We have a "credibility" points system ...
2
votes
1answer
206 views
Swiss Ranking System Mysql Query Question
I'm creating a video ranking website. Each video goes up against another video in a match up. Then the user moves forward to the next matchup.
The following query returns results sorted by win loss ...
2
votes
8answers
266 views
Ranking objects in List<> by multiple criteria
I have a list of objects representing plants - each of which have member properties which represent a range of tolerable environmental conditions.
I want to re-order this list such that the plant ...
2
votes
5answers
281 views
Recommendations for user 'levelling' system
I am looking for a, preferably open-source, user levelling/ranking system. By this I mean, similar to Xbox Live Achievements, users can complete a certain task, get awarded 'points' and then progress ...