We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Tested on Pandas v1.1.0
I'm trying to import a JSON file containing the following:
test.json
{"file_path": null}
If I run the following code,
pd.read_json("test.json", typ='series').to_dict()
I get this output:
{'file_path': NaT}
Why is null getting converted to NaT instead of None?
null
NaT
None