利用python深度分析微信朋友圈好友

最近看了wxpy这个包,感觉还不错,分析一下微信的好友。

分析的目的:

1.看看好友的性别占比、地域分布

2.分析好友的个性签名

3.对好友的签名进行情感分析

环境:python 3.6

需要的包wxpy、jieba、snownlp、scipy、wordcloud(这个pip可能直接安装不了,会提示需要c++之类的错误,直接去官网下载whl文件,用pip离线安装就好了,命令:pip install D:/xxxx/xxxx/xxx.whl把xxx换成你的文件路径)

过程如下:

先导入需要的所有包。利用wxpy的bot()接口,可以获得好友、公众号、群聊等属性,可以完成大部分web端微信的操作,比如自己跟自己聊天,添加好友等。


from wxpy import *

from snownlp import SnowNLP,sentiment

import re,jieba

from scipy.misc import imread

from wordcloud import WordCloud, ImageColorGenerator,STOPWORDS

import matplotlib.pyplot as plt

from collections import Counter

bot=Bot()

friends=bot.friends()#获得好友对象

groups=bot.groups()#获得群聊对象

mps=bot.mps()#获得微信公众号

print(mps)

#计算男女性别,画出饼图

sex_dict={'boy':0,'girl':0,'other':0}

for friend in friends:

    if friend.sex==1:

        sex_dict['boy']+=1

    elif friend.sex==2:

        sex_dict['girl']+=1

    else:

        sex_dict['other']+=1

print('有男生{}个,女生{}个,未知性别{}个'.format(sex_dict['boy'],sex_dict['girl'],sex_dict['other']))

labels = ['boy','girl','other']

colors = ['red','yellow','green']

explode = (0.1, 0, 0)  #最大的突出显示

plt.figure(figsize=(8,5), dpi=80)

plt.axes(aspect=1)

plt.pie(sex_dict.values(),explode=explode,labels=labels, autopct='%1.2f%%',colors=colors,labeldistance = 1.1, shadow = True, startangle = 90, pctdistance = 0.6)

plt.title("SEX ANALYSIS",bbox=dict(facecolor='g', edgecolor='blue', alpha=0.65 ))#设置标题和标题边框

plt.savefig("sex_analysis.jpg")

plt.show()

运行过程中,会弹出二维码,微信扫描登录一下就可以看到下面的图片了。

image

我的好友男女平均分配,不知道其他人的怎么样。

接下来看好友的地域分布


city=[]

Municipality=['上海','上海市','北京','北京市','重庆','重庆市','天津','天津市']

for friend in friends:

    if friend.province  in Municipality:

        city.append(friend.province)#直辖市直接添加城市

    else:

        city.append(friend.city)

#print(city.count('上海'))

counts=dict(Counter(city))#统计各个地区人数

print(counts)

df=pd.DataFrame([counts]).T#转成DataFrame方便保存和后面画图,装置成竖排形式

看地理图,就要请出大名鼎鼎的tableau,一键生成,用matplotlib也可以画地理图,比较麻烦一些而已。

image

地理图可以很清晰看到好友分布地域和数量。

接下来进行好友签名分析和情感分析

text1=[]

emotions=[]

for friend in friends:

    sig=friend.signature.strip()

    newsig=re.sub(re.compile('<.*?>|[0-9]|。|,|!|~|—|”|“|《|》|\?|、|:'), '', sig)#去掉数字标点符号

    text1.append(newsig)

    if len(newsig)>0:

        sentiments = SnowNLP(newsig).sentiments

        emotions.append(sentiments)

text = "".join(text1)

wordlist=" ".join(jieba.cut(text,cut_all=True))#结巴分词,用空格连接

stopwords = STOPWORDS#设置停用词

bgimg=imread(r'C:\Users\lbship\Desktop\mice.jpg')#设置背景图片

font_path=r'C:\Windows\Fonts\simkai.ttf'

wc = WordCloud(font_path=font_path,  # 设置字体

              background_color="white",  # 背景颜色

              max_words=2000,  # 词云显示的最大词数

              stopwords = stopwords,        # 设置停用词

              mask=bgimg,  # 设置背景图片

              max_font_size=100,  # 字体最大值

              random_state=42,#设置有多少种随机生成状态,即有多少种配色

              width=1000, height=860, margin=2,# 设置图片默认的大小,margin为词语边缘距离

              ).generate(wordlist)

image_colors = ImageColorGenerator(bgimg)#根据图片生成词云颜色

plt.imshow(wc)

plt.axis("off")#不显示坐标尺寸

plt.savefig("sig.jpg")

plt.show()

#情感分析

positive=len(list(i for i in emotions if i>0.66))

normal=len(list(i for i in emotions if i<=0.66 and i>=0.33))

#normal = len(list(filter(lambda x:x>=0.33 and x<=0.66,emotions)))

negative=len(list(i for i in emotions if i<0.33))

labels = ['POSITIVE','NORMAL','NEGATIVE']

values = (positive,normal,negative)

plt.rcParams['font.sans-serif'] = ['simHei']

plt.rcParams['axes.unicode_minus'] = False

plt.title("SENTIMENTS ANALYSIS",fontsize='large',fontweight='bold',bbox=dict(facecolor='blue', edgecolor='yellow', alpha=0.5 ))

plt.xlabel('sentiments analysis')

plt.ylabel('counts')

plt.xticks(range(3),labels)

plt.bar(range(3), values, color = 'rgb')

plt.savefig("sentiment.jpg")

plt.show()
image
image

朋友圈还是积极向上的朋友比较多。

下面是完整代码


from wxpy import *

from snownlp import SnowNLP,sentiment

import re,jieba

import pandas as pd

from scipy.misc import imread

from wordcloud import WordCloud, ImageColorGenerator,STOPWORDS

import matplotlib.pyplot as plt

from collections import Counter

bot=Bot()

friends=bot.friends()#获得好友对象

groups=bot.groups()#获得群聊对象

mps=bot.mps()#获得微信公众号

print(mps)

#计算男女性别,画出饼图

sex_dict={'boy':0,'girl':0,'other':0}

for friend in friends:

    if friend.sex==1:

        sex_dict['boy']+=1

    elif friend.sex==2:

        sex_dict['girl']+=1

    else:

        sex_dict['other']+=1

print('有男生{}个,女生{}个,未知性别{}个'.format(sex_dict['boy'],sex_dict['girl'],sex_dict['other']))

labels = ['boy','girl','other']

colors = ['red','yellow','green']

explode = (0.1, 0, 0)  #最大的突出显示

plt.figure(figsize=(8,5), dpi=80)

plt.axes(aspect=1)

plt.pie(sex_dict.values(),explode=explode,labels=labels, autopct='%1.2f%%',colors=colors,labeldistance = 1.1, shadow = True, startangle = 90, pctdistance = 0.6)

plt.title("SEX ANALYSIS",bbox=dict(facecolor='g', edgecolor='blue', alpha=0.65 ))#设置标题和标题边框

plt.savefig("sex_analysis.jpg")

plt.show()

#获取城市分布

city=[]

Municipality=['上海','上海市','北京','北京市','重庆','重庆市','天津','天津市']

for friend in friends:

    if friend.province  in Municipality:

        city.append(friend.province)#直辖市直接添加城市

    else:

        city.append(friend.city)

#print(city.count('上海'))

counts=dict(Counter(city))#统计各个地区人数

print(counts)

df=pd.DataFrame([counts]).T#转成DataFrame方便保存和后面画图,装置成竖排形式

df.to_excel('city.xlsx')

#获取好友签名,生成词云,并进行情感分析

text1=[]

emotions=[]

for friend in friends:

    sig=friend.signature.strip()

    newsig=re.sub(re.compile('<.*?>|[0-9]|。|,|!|~|—|”|“|《|》|\?|、|:'), '', sig)#去掉数字标点符号

    text1.append(newsig)

    if len(newsig)>0:

        sentiments = SnowNLP(newsig).sentiments

        emotions.append(sentiments)

text = "".join(text1)

wordlist=" ".join(jieba.cut(text,cut_all=True))#结巴分词,用空格连接

stopwords = STOPWORDS#设置停用词

bgimg=imread(r'C:\Users\lbship\Desktop\mice.jpg')#设置背景图片

font_path=r'C:\Windows\Fonts\simkai.ttf'

wc = WordCloud(font_path=font_path,  # 设置字体

              background_color="white",  # 背景颜色

              max_words=2000,  # 词云显示的最大词数

              stopwords = stopwords,        # 设置停用词

              mask=bgimg,  # 设置背景图片

              max_font_size=100,  # 字体最大值

              random_state=42,#设置有多少种随机生成状态,即有多少种配色

              width=1000, height=860, margin=2,# 设置图片默认的大小,margin为词语边缘距离

              ).generate(wordlist)

image_colors = ImageColorGenerator(bgimg)#根据图片生成词云颜色

plt.imshow(wc)

plt.axis("off")#不显示坐标尺寸

plt.savefig("sig.jpg")

plt.show()

#情感分析

positive=len(list(i for i in emotions if i>0.66))

normal=len(list(i for i in emotions if i<=0.66 and i>=0.33))

#normal = len(list(filter(lambda x:x>=0.33 and x<=0.66,emotions)))

negative=len(list(i for i in emotions if i<0.33))

labels = ['POSITIVE','NORMAL','NEGATIVE']

values = (positive,normal,negative)

plt.rcParams['font.sans-serif'] = ['simHei']

plt.rcParams['axes.unicode_minus'] = False

plt.title("SENTIMENTS ANALYSIS",fontsize='large',fontweight='bold',bbox=dict(facecolor='blue', edgecolor='yellow', alpha=0.5 ))

plt.xlabel('sentiments analysis')

plt.ylabel('counts')

plt.xticks(range(3),labels)

plt.bar(range(3), values, color = 'rgb')

plt.savefig("sentiment.jpg")

plt.show()
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,001评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,210评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,874评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,001评论 1 291
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,022评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,005评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,929评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,742评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,193评论 1 309
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,427评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,583评论 1 346
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,305评论 5 342
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,911评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,564评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,731评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,581评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,478评论 2 352

推荐阅读更多精彩内容