一文教你向Pandas DataFrame添加行
作者:allway2 时间:2022-01-31 13:51:01
引言
您可以使用df.loc()函数在Pandas DataFrame的末尾添加一行:
#add row to end of DataFrame
df.loc[len(df.index)] = [value1, value2, value3, ...]
您可以使用df.append()函数将现有 DataFrame 的几行附加到另一个 DataFrame 的末尾:
#append rows of df2 to end of existing DataFrame
df = df.append(df2, ignore_index = True)
下面的例子展示了如何在实践中使用这些函数。
示例 1:向 Pandas DataFrame 添加一行
以下代码显示了如何在 Pandas DataFrame 的末尾添加一行:
import pandas as pd
#create DataFrame
df = pd.DataFrame({'points': [10, 12, 12, 14, 13, 18],
'rebounds': [7, 7, 8, 13, 7, 4],
'assists': [11, 8, 10, 6, 6, 5]})
#view DataFrame
df
pointsrebounds assists
0107 11
1127 8
2128 10
31413 6
4137 6
5184 5
#add new row to end of DataFrame
df.loc[len(df.index)] = [20, 7, 5]
#view updated DataFrame
df
pointsrebounds assists
0107 11
1127 8
2128 10
31413 6
4137 6
5184 5
6207 5
示例 2:向 Pandas DataFrame 添加几行
以下代码显示了如何将现有 DataFrame 的几行添加到另一个 DataFrame 的末尾:
import pandas as pd
#create DataFrame
df = pd.DataFrame({'points': [10, 12, 12, 14, 13, 18],
'rebounds': [7, 7, 8, 13, 7, 4],
'assists': [11, 8, 10, 6, 6, 5]})
#view DataFrame
df
pointsrebounds assists
0107 11
1127 8
2128 10
31413 6
4137 6
5184 5
#define second DataFrame
df2 = pd.DataFrame({'points': [21, 25, 26],
'rebounds': [7, 7, 13],
'assists': [11, 3, 3]})
#add new row to end of DataFrame
df = df.append(df2, ignore_index = True)
#view updated DataFrame
df
pointsrebounds assists
0107 11
1127 8
2128 10
31413 6
4137 6
5184 5
6217 11
7257 3
82613 3
请注意,两个 DataFrame 应该具有相同的列名,以便成功地将一个 DataFrame 的行附加到另一个 DataFrame 的末尾。
补充:优雅的增加一列,一定要优雅!
df['new_colu']='12'#向 DataFrame 添加一列,该列为同一值
df
Out[93]:
one two three four new_colu
a 0 1 2 3 12
b 4 5 6 7 12
c 8 9 10 11 12
d 12 13 14 15 12
new_raw 3 3 3 3 12
来源:https://blog.csdn.net/allway2/article/details/121421241
标签:pandas,dataframe,行
0
投稿
猜你喜欢
SqlServer将查询结果转换为XML和JSON
2024-01-18 20:25:59
python 实现调用子文件下的模块方法
2022-02-02 16:39:38
MySQL学习之事务与并发控制
2024-01-27 22:36:39
Bootstrap组合上、下拉框简单实现代码
2024-04-10 11:03:05
mysql中查询字段为null的数据navicat问题
2024-01-15 23:39:16
php遍历目录与文件夹的多种方法详解
2024-05-02 17:14:33
Python基于贪心算法解决背包问题示例
2022-10-31 01:25:56
gRPC超时拦截器实现示例
2024-04-27 15:30:54
详解Django CAS 解决方案
2021-12-06 07:52:11
javascript面向对象编程(二)
2008-03-07 12:59:00
Python区块链创世块创建教程
2023-10-10 06:25:52
vue移动端实现手指滑动效果
2023-07-02 16:48:49
python requests使用socks5的例子
2023-09-14 07:06:45
PHP实现统计代码行数小工具
2023-11-15 18:53:20
asp如何显示SQL数据库所有表的名称?
2010-06-08 09:30:00
分步骤教你用python一步步提取PPT中的图片
2023-07-01 19:58:22
SQL查询入门(上篇) 推荐收藏
2011-09-30 11:47:11
appium+python adb常用命令分享
2022-12-27 09:16:24
mssql server 数据库附加不上解决办法分享
2011-09-30 11:55:20
SQL技巧:快速掌握一些异常精妙的SQL语句
2009-09-02 13:55:00