Missing value

Applies to: python, sql, general

A missing value represents absent data. In pandas it is often NaN or NA; in SQL it is NULL.

df.dropna()
df.fillna(0)

See also: null, pandas-dataframe