I have dataset (bigger than this part) where I store float numbers. But some of the data is missing. How can I find all of the indices where data is missing or has non-number value? I was looking for similar questions on SO, but mostly it was about dropping rows, but probably similar question was asked before but I couldn't find it. I need to replace these values, so I need to identify them all.
I want to get indices of cells [86,2], [87,2], [87,3]. How can I easily retrieve them?
0 1 2 3 4
85 1645.0 1596.0 1578.0 1567.0 1580.0
86 1554.0 1506.0 0.0 1466.0 1469.0
87 1588.0 1510.0 'ff' 0 1489.0
I include JSON if anyone needs to recreate example:
{"0":{"85":1645.0,"86":1554.0,"87":1588.0},"1":{"85":1596.0,"86":1506.0,"87":1510.0},"2":{"85":1578.0,"86":0.0,"87":'ff'},"3":{"85":1567.0,"86":1466.0,"87":0},"4":{"85":1580.0,"86":1469.0,"87":1489.0}}