Python爬虫——对开封市58同城出租房数据进行分析

Posted lexmoon

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python爬虫——对开封市58同城出租房数据进行分析相关的知识,希望对你有一定的参考价值。

 

 


出租房面积(area)

技术分享图片         

技术分享图片

 

技术分享图片

 


 

 

出租房价格(price)

      

技术分享图片

 

 

 

技术分享图片

 

 

 

技术分享图片

 


  对比信息 

 

技术分享图片

 

代码

 1 import matplotlib as mpl
 2 import matplotlib.pyplot as plt
 3 import pandas as pad
 4 import seaborn as sns
 5 import numpy as np
 6 
 7 sns.set_style(dark)
 8 kf = pad.read_csv(kf.csv)
 9 
10 def sinplotone():
11     fig,ax = plt.subplots()
12     ax.violinplot(kf[price])
13     plt.show()
14 
15 def sinplottwo():
16     sns.set_style(whitegrid)
17     sns.boxplot(kf[price],palette=deep)
18     # sns.despine(left=True)
19     plt.show()
20 
21 def sinplotthree():
22     sns.distplot(kf[price])
23     plt.show()
24 
25 def s():
26     df = pad.DataFrame(kf[area],kf[price])
27     sns.jointplot(x=x,y=y,data=df)
28     plt.show()
29 
30 if __name__ == __main__:
31     fig,ax = plt.subplots()
32     ax.scatter(kf[area],kf[price],12)
33     plt.show()

 

以上是关于Python爬虫——对开封市58同城出租房数据进行分析的主要内容,如果未能解决你的问题,请参考以下文章

python爬虫:找房助手V1.0-爬取58同城租房信息

成都58同城快速租房的爬虫,nodeJS爬虫

利用python爬取58同城简历数据

用Python写爬虫爬取58同城二手交易数据

58同城二手车数据爬虫——数字加密解码(Python原创)

python58同城爬虫