Glossary

Explicit Missing Values

Null, None, NaN, empty string - pandas represents as `NaN` (Not a Number) - Easy to detect: `df.isnull().sum()`

Learn More

Related Terms