我是靠谱客的博主 怡然面包,这篇文章主要介绍python统计出911数据中不同月份不同类型的电话的次数的变化情况,现在分享给大家,希望可以做个参考。

在这里插入图片描述

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import pandas as pd import numpy as np from matplotlib import pyplot as plt d = pd.date_range(start='20181001', end='20201001') # print(d) df = pd.read_csv('./911.csv') df['timeStamp'] = pd.to_datetime(df['timeStamp']) df.set_index('timeStamp', inplace=True) count_by_month = df.resample('M').count()['title'] print(count_by_month) #绘制折线图分析变化趋势 x = count_by_month.index y = count_by_month.values x = [i.strftime("%Y%m%d") for i in x]#转化为时间日期格式。 plt.figure(figsize=(20, 8), dpi=80) plt.plot(range(len(x)), y) plt.xticks(range(len(x)), x, rotation=45) plt.show()

最后

以上就是怡然面包最近收集整理的关于python统计出911数据中不同月份不同类型的电话的次数的变化情况的全部内容,更多相关python统计出911数据中不同月份不同类型内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(79)

评论列表共有 0 条评论

立即
投稿
返回
顶部