gpt4 book ai didi

Python Pandas Dataframe 插入许多任意值

转载 作者:太空宇宙 更新时间:2023-11-04 09:40:36 25 4
gpt4 key购买 nike

假设我有一个如下所示的数据框:

       A
0 Apple
1 orange
2 pear
3 apple

对于索引值 4-1000,我希望他们都说“西瓜”。

有什么建议吗?

最佳答案

重新索引并填充 NaN:

df.reindex(np.r_[:1000]).fillna('watermelon')

或者,

df = df.reindex(np.r_[:1000])
df.iloc[df['A'].last_valid_index() + 1:, 0] = 'watermelon' # df.iloc[4:, 0] = "..."

              A
0 Apple
1 orange
2 pear
3 apple
4 watermelon
5 watermelon
...
999 watermelon

关于Python Pandas Dataframe 插入许多任意值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51869903/

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