How are the values sorted when I use row.values() in an graphlab.SFrame
row?
For example:
import graphlab as gl
x = gl.SFrame({'X200':[1,2,3], 'X100':[4,5,6], 'X1': [7,8,9]})
row = x[0] # first row
print row.values()
[out]:
[ 7, 4, 1]
So it seems like they are sorted by the key / column names, but is that always true? Any pointers to documentation from python dictionary or SFrame will be much appreciated.