将sframe列转换为列表

时间:2016-03-27 23:44:11

标签: python graphlab sframe

我需要将SFrame列转换为列表。

输入:

 `+---------+
  |   word  |
  +---------+
  |   love  |
  |  loves  |
  |   easy  |
  | perfect |
  |  great  |
  +---------+`

输出:

['love', 'loves', 'easy', 'perfect', 'great']

2 个答案:

答案 0 :(得分:9)

我很惊讶- (UIModalPresentationStyle) adaptivePresentationStyleForPresentationController: (UIPresentationController * ) controller { return UIModalPresentationNone; } 函数给你一个错误。这对我有用:

list

返回:

import graphlab as gl
sf = gl.SFrame({'fruit': ['apple', 'banana', 'pear']})
list(sf['fruit'])

答案 1 :(得分:0)

提示:您可以使用以下方法将其转换为数组:

arr = sf.to_numpy()