Suppose you are passing a dictionary to the pytable constructor:
h5f.createTable('/','table',{'col1':Float64Col(pos=0),'col2':StringCol(16,pos=1)})
I have the following three beginner's questions related to nested pytables:
1) How do you use a dictionary descriptor for creating a nested pytable? 2) How do you assign positions for the nested columns? If the top-level column has position pos=1, do you start numbering its subcolumns from 0? 3) How do you assign rows to the nested column?
Thanks for helping!