布尔索引
赋值过程:df[行号][True]=1
时间序列
创建
# 输出包含1.25-1.31的DatetimeIndex列表, freq还能为M、Y等
pd.date_range(start='20220125', end='20220131', freq='D')
df['stamp'] = pd.to_datetime(df['stamp'], format='%d')
重采样
指的是将时间序列从一个频率转化为另一个频率进行处理的过程,将高频率数据转化为低频率数据为降采样(可以用在数据密集时,加个mean),低频率转化为高频率为升采样
df.resample('M').count()
df.resample('10D').mean()
Example
# coding=utf-8
#911数据中不同月份不同类型的电话的次数的变化情况
import pandas as pd
import numpy as np
from matplotlib import pyplot as plt
#把时间字符串转为时间类型设置为索引
df = pd.read_csv("./911.csv")
df["timeStamp"] = pd.to_datetime(df["timeStamp"])
统计不同月份:
# 设置时间序列索引
df.set_index("timeStamp",inplace=True)
#统计出911数据中不同月份电话次数的
count_by_month = df.resample("M").count()["title"]
print(count_by_month)
#画图
_x = count_by_month.index
_y = count_by_month.values
# for i in _x:
# print(dir(i))
# break
_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()
统计不同月份不同类型,即对每个分组进行绘图,df变成group_data:
#添加列,表示分类
temp_list = df["title"].str.split(": ").tolist()
cate_list = [i[0] for i in temp_list]
# print(np.array(cate_list).reshape((df.shape[0],1)))
df["cate"] = pd.DataFrame(np.array(cate_list).reshape((df.shape[0],1)))
df.set_index("timeStamp",inplace=True)
print(df.head(1))
plt.figure(figsize=(20, 8), dpi=80)
#分组
for group_name,group_data in df.groupby(by="cate"):
#对不同的分类都进行绘图,即在一个图上绘制n条线,name是分的几个类,data是分类后的时间序列
count_by_month = group_data.resample("M").count()["title"]
# 画图
_x = count_by_month.index
print(_x) # 结果是每个月最后一天
_y = count_by_month.values
# 改变样式
_x = [i.strftime("%Y%m%d") for i in _x]
plt.plot(range(len(_x)), _y, label=group_name)
plt.xticks(range(len(_x)), _x, rotation=45)
plt.legend(loc="best")
plt.show()
时间段方法
#把分开的时间字符串通过periodIndex的方法转化为pandas的时间类型
period = pd.PeriodIndex(year=df["year"],month=df["month"],day=df["day"],hour=df["hour"],freq="H")
df["datetime"] = period
豆瓣电影数据展示