I've seen this issue construct-pandas-dataframe-from-items-in-nested-dictionary. The difference is that here I consider Nested Dataframe In Dict.
My problem may seem to be confusing. Here's a simple example. Nested dataframe in dict:
d1=pd.DataFrame({'s':[1]})
d2=pd.DataFrame({'s':[2]})
d3=pd.DataFrame({'s':[3]})
d={'a':d1,
'b':d2,
'c':d3}
What I want is a dataframe like:
a b c
1 2 3