0

I have a list of tuples my_list = List[Tuple[int, int, float]] where the first number refers to a row, second to the column, and the third to the coordinate value. (Basically, this is a matrix style.

# the columns start from any number  
my_data = [(1,100,0.1), (1,101,0.2), (1,103,0.1), 
           (2,100,0.3), (2,101,0.1), (2,103,0.1)
]
# output 
#    100  101  103  
# 1  0.1, 0.2, 0.1 
# 2  0.3, 0.1, 0.1

How to create a pd.DataFrame from such a list? Thanks!

Pablo
  • 3,135
  • 4
  • 27
  • 43

0 Answers0