我在python 3.6.5上使用pandas,我希望在DataFrame实例上获得与Laravel中Collection的“pluck”方法类似的结果。例如:
数据帧
one two
0 beer wine
1 beer tomato
PHP Laravel代码:
$plucked = $collection->pluck('two')->toArray();
$print_r($plucked);
>> ['wine', 'tomato']
期望的解决方案(Python等价物):
plucked = df.pluck('two')
我该如何实现这一目标?
您只需执行以下操作即可在DataFrame列中选择ell条目:
storage_variable = df['Column Name']
所以,在你的情况下,这将是:
plucked = df['two']