gpt4 book ai didi

python - 在 pandas 上添加新行?

转载 作者:太空宇宙 更新时间:2023-11-03 18:02:29 26 4
gpt4 key购买 nike

为什么我无法在 pandas 上添加新行?

data="""lname    fname   rno_cd    eri_cd
0 CRUISE TOM E 1
1 DEPP JOHNNY Y 0
2 DICAPR LENARDO Nan 1
3 PITT BRAD Nan 1
4 MOST JEFF A 0
5 HANKS TOM Nan 1
6 BRANDO MARLON C 1
7 WILLIAMS ROBIN F 1
8 DOWNEY ROBERT B 1
9 PACINO AL E 1"""

import pandas as pd
from io import StringIO

df= pd.read_csv(StringIO(data.decode('UTF-8')),delim_whitespace=True )


df.loc[-1]= ['2','3','4','4']

每当我尝试执行代码时都会收到错误。

我也尝试过:

df.loc[len(df)+1]

最佳答案

尝试 .iloc 属性:

df.iloc[-1] = []

更多 here .

关于python - 在 pandas 上添加新行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27466290/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com