How do you implement the 'related tags' functionality as used in many websites like our stackoverflow.com and http://tagexplorer.sandbox.yahoo.com/.
|
|
|
My guess is that it is a correlation between which tags are most often used together. For example:
Then it's natural to assume that tag2 "is related to" tag1. I would say the best place to learn would be O'Reilly's Programming Collective Intelligence book. |
|||
|
|
A couple of ways come to mind. You could just do a quick query to select related tag names:
Another way would be to actually setup your tag table to have a relations field, maybe related IDs separated by commas, but this seems hellish to maintain. I'm sure someone will come up with a better answer, so I'm quite curious as well. |
|||
|
|
|
Hmm, I'm not very good at math :-), but sounds like you are looking for the correlation between two tags. My first instinct would be to set the expected value to 50% (expecting each tag to appear on 50% of the articles - this might be way off), calculate the correlation coefficient of tags in pairs and decide that if the correlation is above a certain value (which you must determine by experimenting), they are related. Alternatively you might get by using a simple measure like (number of articles they co-appear) / (total number of articles where at least one tag appears). |
|||
|
|
|
Maybe s.o. tracks how many time tags come together
|
|||
|
|
|
Use:
|
||||
|
|