Informatics Practices
What are NaNs ? How do you store them in a data structures ?
Python Pandas
3 Likes
Answer
NaN stands for 'Not a Number'. In Python libraries like NumPy and Pandas, NaN is the legal empty value used to represent missing or undefined values, and we can use np.NaN
(imported NumPy as np) to specify a missing value.
Answered By
2 Likes