Considering the following 2 lists of 3 dicts and 3 empty DataFrames
dict0={\'actual\': {\'2013-02-20 13:30:00\': 0.93}} dict1={\'actual\': {\'2013-02-20 13:3
You need to keep the reference to the df objects, so you can try:
for idx, dikt in enumerate(dicts): dfs[idx] = dfs[idx].from_dict(dikt, orient='columns', dtype=None)