码迷,mamicode.com
首页 > 编程语言 > 详细

Python 可视化Twitter中指定话题中Tweet的词汇频率

时间:2017-05-05 10:47:32      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:技术分享   rank   技术   art   分享   content   pytho   length   login   

CODE:

#!/usr/bin/python 
# -*- coding: utf-8 -*-

‘‘‘
Created on 2014-7-8
@author: guaguastd
@name: plot_frequencies_words.py
‘‘‘

if __name__ == ‘__main__‘:
    #import json
    
    # import Counter
    from collections import Counter
    
    # import search
    from search import search_for_tweet
    
    # import visualize
    from visualize import visualize_for_frequencies
    
    # import login, see http://blog.csdn.net/guaguastd/article/details/31706155
    from login import twitter_login
    
    # get the twitter access api
    twitter_api = twitter_login()
    
    # import tweet
    from tweet import extract_tweet_entities
    
    while 1:
        query = raw_input(‘\nInput the query (eg. #MentionSomeoneImportantForYou, exit to quit): ‘)
        
        if query == ‘exit‘:
            print ‘Successfully exit!‘
            break
        
        statuses = search_for_tweet(twitter_api, query)
        status_texts,screen_names,hashtags,words = extract_tweet_entities(statuses)  
        
        word_counts = sorted(Counter(words).values(), reverse=True)
        visualize_for_frequencies(word_counts, "Word Rank", "Freq")

RESULT:

Input the query (eg. #MentionSomeoneImportantForYou, exit to quit): #MentionSomeoneImportantForYou
Length of statuses 100
Length of statuses 196

技术分享

Python 可视化Twitter中指定话题中Tweet的词汇频率

标签:技术分享   rank   技术   art   分享   content   pytho   length   login   

原文地址:http://www.cnblogs.com/clnchanpin/p/6811448.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!