gpt4 book ai didi

python - 复制 Pandas 列表中的元素

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

我有点迷路,需要一些帮助。

假设我有一个数据框的列,我需要用前几行的某些元素填充。为了简化事情,我制作了一个 pd.series:

lista = ['hola','salut','hello','xixie']
index1 = (0, 23,77,88)
lista2 = pd.Series(lista, index = index1)

我需要做的是用列表中的元素填充 lista2 索引之间的空白,所以我需要从第 0 行到 22'hola',从 22 到 76 'salut',等等。该系列的总长度必须为 88。

希望大家能理解我的意思,先谢谢了!

最佳答案

试试这个:

In [55]: lista2.reindex(np.arange(lista2.index.max())).ffill()
Out[55]:
0 hola
1 hola
2 hola
3 hola
4 hola
5 hola
6 hola
7 hola
8 hola
9 hola
10 hola
11 hola
12 hola
13 hola
14 hola
15 hola
16 hola
17 hola
18 hola
19 hola
...
68 salut
69 salut
70 salut
71 salut
72 salut
73 salut
74 salut
75 salut
76 salut
77 hello
78 hello
79 hello
80 hello
81 hello
82 hello
83 hello
84 hello
85 hello
86 hello
87 hello
Length: 88, dtype: object

关于python - 复制 Pandas 列表中的元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45055678/

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