码迷,mamicode.com
首页 > 移动开发 > 详细

pandas尾部追加行记录append

时间:2020-03-14 23:28:18      阅读:934      评论:0      收藏:0      [点我收藏+]

标签:com   http   记录   color   img   abc   lsp   dataframe   div   

方法(一)通过字典追加(列名要一致)

data={a:50,b:60,c:70}
df=df.append(data,ignore_index=True)
技术图片                                                               技术图片

 

 

 

 

 

方法(二)通过Serise

1 data=pd.Serise([50,60,70],index=list(abc))
2 df=df.append(data,ignore_index=True)
3 或者
4 data=pd.Serise({a:50,b:60,c:70})
5 df=df.append(data,ignore_index=True)

 

方法(三)通过DataFrame

1 df2=pd.DataFrame([[50,60,70]],columns=list(abc))
2 df=df.append(df2,ignore=True)

 

循环追加 通过for

1 for i in range(5):
2     x=np.random.randint(10,50)
3     y=np.random.randint(10,50)
4     z=np.random.randint(10,50)
5     data={a:x,b:y,c:z}
6     df=df.append(data,ignore_index=True)
     技术图片                                   技术图片             

pandas尾部追加行记录append

标签:com   http   记录   color   img   abc   lsp   dataframe   div   

原文地址:https://www.cnblogs.com/jm7612/p/12495020.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!