I'm trying to name the columns of my new dataframe after the dataframe.from_dict operation.
Simply using pandas.dataframe.from_dict function:
df = pd.DataFrame.from_dict(my_dict,orient='index')
yields the dataframe without column headers.
data=pd.DataFrame.from_dict(my_dict,orient='index).rename(columns = {'name','number'})
This yields nothing an error : TypeError: 'set' object is not callable.
Does anybody have a clue?