I have a dictionary that contains 6 dataframes stored as values. I'd like to convert these values into actual dataframes with the name of the dataframe being the key corresponding to the values. The dictionary structure is like this:
Name: frames, Type: dict, Size: 6
'_20Nov2017_24Dec2017':[1220608 rows x 4 columns]
'_25Dec2017_28Jan2018':[1931572 rows x 4 columns]
...etc
The desired output is 6 dataframes, with the names _20Nov2017_24Dec2017, 25Dec2017_28Jan2018 and so on. Here is a snapshot of the dataframes if needed:
UpdateDatetime   Code   SaleTime      Status
05JAN18:12:37    BSNAS  03JAN18:19:55 N
Any ideas how to go about this? Thanks!
