I have a directory containing many .dta (Stata format) files which I have loaded into a dictionary of dataframes.
Given I now may have many dataframes within the unified dictionary object, how can I select a few and "extract" them out of the dictionary?
So for example, how would I extract just two of these three dataframes nested in the dictionary, something like
dat10 = df_dict['dat10']
dat11 = df_dict['dat11']
but without using literal assignments. Maybe some sort of looping structure over the dictionary.