我需要将SFrame列转换为列表。
输入:
`+---------+
| word |
+---------+
| love |
| loves |
| easy |
| perfect |
| great |
+---------+`
输出:
['love', 'loves', 'easy', 'perfect', 'great']
答案 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()