Python爬虫(二)——对58同城出租房数据进行分析


出租房面积(area)

Python爬虫(二)——对58同城出租房数据进行分析_第1张图片

Python爬虫(二)——对58同城出租房数据进行分析_第2张图片

Python爬虫(二)——对58同城出租房数据进行分析_第3张图片


出租房价格(price)

Python爬虫(二)——对58同城出租房数据进行分析_第4张图片

Python爬虫(二)——对58同城出租房数据进行分析_第5张图片

Python爬虫(二)——对58同城出租房数据进行分析_第6张图片


对比信息

Python爬虫(二)——对58同城出租房数据进行分析_第7张图片

代码

在学习过程中有什么不懂得可以加我的
python学习交流扣扣qun,784758214
群里有不错的学习视频教程、开发工具与电子书籍。
与你分享python企业当下人才需求及怎么从零基础学习好python,和学习什么内容
 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同城出租房数据进行分析)