I have a dictionary where the values are lists like the following:
d= {u'2012-06-08': [list_element_0, list_element_1, list_element_2],
u'2012-06-09': [list_element_0, list_element_1, list_element_2],
u'2012-06-10': [list_element_0, list_element_1, list_element_2]}
I'd like to create a dataframe
for with 4 columns: [column_for_dict_keys, column_for_elements_in_list_at_index_0, column_for_elements_in_list_at_index_1, column_for_elements_in_list_at_index_2]
I found how to make a regular dictionary into a dataframe here, but I don't know how to modify it for my specific case