Can python datatable have any collection as datatype for a column?
import datatable as dt
dt_with_collection = dt.Frame(A=range(5), B=[1,5,7,2,3], c=[(1,2), (3,4), (5,6), (7,8), (9,10)])
print(dt_with_collection)
TypeError: Cannot create column from a python list: element at index 0 is of type <class 'tuple'>. If you meant to create a column of type obj64, then you must request this type explicitly
I get this error when trying to do so.