MCPcopy Index your code
hub / github.com/QuantFans/quantdigger / frame2records

Function frame2records

quantdigger/kernel/datasource/data.py:99–106  ·  view source on GitHub ↗

docstring for frame2records(dat)

(data)

Source from the content-addressed store, hash-verified

97
98
99def frame2records(data):
100 '''docstring for frame2records(dat)'''
101 records = []
102 NBAR = len(data.ix[0, 'entry_0':'entry_N'])-2
103 for i in range(len(data)):
104 rec = make_record(data, i)
105 records.append(rec)
106 return records
107
108
109def load_records(fnames):

Callers 1

load_recordsFunction · 0.85

Calls 1

make_recordFunction · 0.85

Tested by

no test coverage detected