我在 python 3.6.5 上使用 Pandas,我希望在 DataFrame 实例上获得与 Laravel 中 Collection 的“pluck”方法类似的结果。例如:数据框 one two0 beer wine1 beer tomatoPHP Laravel 代码:$plucked = $collection->pluck('two')->toArray();$print_r($plucked);>> ['wine', 'tomato']所需的解决方案(Python 等效):plucked = df.pluck('two')我如何实现这一目标?
1 回答
阿波罗的战车
TA贡献1862条经验 获得超6个赞
您可以通过简单地执行以下操作来选择 DataFrame 列中的 ell 条目:
storage_variable = df['Column Name']
所以,在你的情况下,这将是:
plucked = df['two']
添加回答
举报
0/150
提交
取消