Removing NaNs in a JSON file using python
Json file example: { "name": "John Doe", "age": 30, "height": null, "weight": NaN, } { "name": "Jim Hanks", "age": NaN, "height": NaN, "weight": NaN, } now imagine there are a lot of rows some containing only NaNs some containing a…