31
votes
10answers
971 views
What is the best way to compute trending topics or tags?
Many sites offer some statistics like "The hottest topics in the last 24h". For example, Topix.com shows this in its section "News Trends". There, you can see the topics which have the fastest grow …
1
vote
2answers
182 views
Best DB (MySQL) structure: Articles which contain favored tags
Hello!
I've built a news site:
- The articles are shown on the front page ordered by date. The newest one first.
- The news are in the table "news" with the fields "id", "title", "text" a …
1
vote
2answers
366 views
Trending topics: 1-word terms vs composed terms
Hello!
With your perfect help here I've already found out how to compute tren …
0
votes
1answer
84 views
Time frames for Standard score
For finding trending topics, I use the Standard score in combination with a moving average:
z-score = ([current trend] - [average historic trends]) / [standard deviation of historic …
5
votes
4answers
722 views
LSA - Latent Semantic Analysis - How to code it in PHP?
Hello!
I would like to implement Latent Semantic Analysis (LSA) in PHP in order to find out topics/tags for texts.
Here is what I think I have to do. Is this correct? How ca …
