abessou / w251-FinalProject

Final project for W251
MIT License
0 stars 0 forks source link

Determine and implement measure of popularity computation for Twitter data source #31

Closed abessou closed 8 years ago

mjasek114 commented 8 years ago

Popularity measure. field: 'tweet.orig_retweet_count'

To list the n tweets with the highest retweet counts do this query:

db.getCollection('twitter_2').find({}).sort({'tweet.orig_retweet_count':-1}).limit(n)