I have multiple dataframes df1, df2, df3 etc.,
The dataframes have no relationships with each other. Therefore, I am not looking to Append/Join/Merge them and put them as a single dataframe inside a dictionary.
I want to create a dictionary that encloses these dataframes.
dfs = {}
I want to add my df1, df2, df3 inside my dfs.
So that when I need that dataframe I can use something like dfs[df1] to call it back. How Can I do this in Pandas.
{'df'+str(e+1):i for e,i in enumerate(df_list)}? - ankydict(enumerate(l))is good enough :-) - BENYdfhere? just asking for future ref. :) - anky