gpt4 book ai didi

python - sqlContext.createDataFrame() 的参数应该是什么?

转载 作者:太空宇宙 更新时间:2023-11-04 05:21:04 24 4
gpt4 key购买 nike

此代码从给定列表创建数据框:

sample_one = [(0, 'mouse'), (1, 'black')]
sample_two = [(0, 'cat'), (1, 'tabby'), (2, 'mouse')]
sample_three = [(0, 'bear'), (1, 'black'), (2, 'salmon')]
sample_data_df = sqlContext.createDataFrame([(sample_one,), (sample_two,),(sample_three,)], ['features'])

在createDataFrame()中,为什么在sample_one(sample_one,)后面多了一个逗号?

最佳答案

这个语法是创建一个元组。您可以尝试以下操作:

>>> sample_one = [(0, 'mouse'), (1, 'black')]
>>> type((sample_one))
<type 'list'>
>>> type((sample_one,))
<type 'tuple'>

关于python - sqlContext.createDataFrame() 的参数应该是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40276090/

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