gpt4 book ai didi

python - 将值添加到现有行 -DataFrame

转载 作者:太空宇宙 更新时间:2023-11-03 11:13:44 24 4
gpt4 key购买 nike

我将日文的一些天气数据(来自 json-dict)附加到 DataFrame。

我想要这样的东西

        天気             風
0 状態: Clouds 風速: 2.1m
1 NaN 向き: 230

但是我有这个

        天気             風
0 状態: Clouds NaN
1 NaN 風速: 2.1m
2 NaN 向き: 230

我如何更改代码以使其成为那样?这是代码

df = pd.DataFrame(columns=['天気','風'])
df = df.append({'天気': weather_status}, ignore_index=True) # 状態: Clouds - value
df = df.append({'風': wind_speed}, ignore_index=True) # 風速: 2.1m -value
df = df.append({'風': wind_deg}, ignore_index=True) # 向き: 230 -value
print(df)

最佳答案

一种方法是:

df = pd.DataFrame(columns=['天気','風'])
df = df.append({'天気': weather_status, '風': wind_speed}, ignore_index=True)
df = df.append({'風': wind_deg}, ignore_index=True)
print(df)

不带索引打印

print(df.to_string(index=False))

关于python - 将值添加到现有行 -DataFrame,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55803354/

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