hi i have a python dictionary data structure like the below
defaultdict(<function __main__.<lambda>()>,
{'AMZN': [{'improv_sharpe': -4.9719673781114265e-05},
{'stan_sharpe': 0.5995152805688786},
{'prob_sharpe': 1.0159440451398998e-19},
{},
{},
{}],
'GOOGL': [{'improv_sharpe': 2.6114809517957284e-05},
{'stan_sharpe': 0.16322865760123956},
{'prob_sharpe': 6.376598832386561e-72},
{},
{},
{}]})
how to i turn the above into the dataframe below:
AMZN GOOGL
improv_sharpe': -4.9719673781114265e-05 2.6114809517957284e-05
etc