无法在新数据框中追加行[重复]
Posted
技术标签:
【中文标题】无法在新数据框中追加行[重复]【英文标题】:not able to append row in new dataframe [duplicate] 【发布时间】:2019-11-07 08:47:13 【问题描述】:****无法在新数据框中追加行** 任何努力都会得到认可**
new_df=pd.DataFrame()
z=pd.DataFrame()
x=input("input number")
x=int(x)
for i in range(x):
y=input("enter srting")
z=usda[usda.Description.str.contains("y")]
new_df.append(z,ignore_index = True)
print(new_df)
【问题讨论】:
usda
是什么?
【参考方案1】:
试试new_df=new_df.append(z,ignore_index = True)
。否则新的数据框不会保存到变量new_df
。
【讨论】:
以上是关于无法在新数据框中追加行[重复]的主要内容,如果未能解决你的问题,请参考以下文章
PHP + MySQL,无法在新选项卡中打开数据库 URL [重复]