Pandas系列

DataFrame添加一行

1
2
df3.loc[i] = df2
# 通过loc添加

索引满足条件数据

1
df[df.day==i]