I have a dictionary as dict_q as:
{'a': w_1 w_2 w_3 w_4
3 3 3 3
1 2 2 2
'b': w_1 w_2 w_3 w_4
5 5 5 5
6 6 6 6
'c': w_1 w_2 w_3 w_4
7 7 7 7
8 8 8 8
'd': w_1 w_2 w_3 w_4
..........................
..........................}
All I want to create new dataframes based on existing key names and columns data as dictionary values. Something like:
df_a :
w_1 w_2 w_3 w_4
3 3 3 3
1 2 2 2
df_b :
w_1 w_2 w_3 w_4
5 5 5 5
6 6 6 6
df_c :
w_1 w_2 w_3 w_4
7 7 7 7
8 8 8 8
df_d :
w_1 w_2 w_3 w_4
..................
..................
................