gpt4 book ai didi

python - 使用生成器表达式将列表系列转换为数据帧

转载 作者:行者123 更新时间:2023-12-01 02:20:11 25 4
gpt4 key购买 nike

s 是一个 Series 对象:

>>> s
0 [2010, 1]
1 [2011, 5]
2 [2012, 10]
dtype: object

然后我发现了以下内容,它使用生成器表达式将 s 转换为 DataFrame。

>>> df = pd.DataFrame(i for i in s)
>>> df
0 1
0 2010 1
1 2011 5
2 2012 10

有什么解释可以解释为什么会这样吗?我不明白为什么会这样。

最佳答案

这就是它起作用的原因。在幕后,Generator 被转换回 list。这是 source code 的一部分.

if isinstance(data, types.GeneratorType):
data = list(data)

它与列表的工作原理相同。

# Creating a list
l = [1,2,3]
# Using the generator
df1 = pd.DataFrame(i for i in l)
# Using the list
df2 = pd.DataFrame(l)
df1.equals(df2)
# True

关于python - 使用生成器表达式将列表系列转换为数据帧,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48041043/

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