I have a dictionary of values:
d = {
0: [1.61122, 1.61544, 1.60593, 1.60862, 1.61386],
3: [1.61962, 1.61734, 1.6195],
1: [1.5967, 1.59462, 1.59579],
2: [1.59062, 1.59279],
}
I want to create a table in pandas where the keys of the dictionary are the index, with each index having multiple rows containing the dictionaries values, like so:
What method or tool would allow me to make a table like this?
