I am learning Python
for Data Science. I have dataset with date column having more NaT
values.
How to get it replaced or removed ?
Please help
I am learning Python
for Data Science. I have dataset with date column having more NaT
values.
How to get it replaced or removed ?
Please help
You can use the following check to replace or remove nat values.
import numpy as np
np.isnat(np.datetime64("NaT"))