How to change colors for NA values to gray in a choropleth map?

Hi @LY_Air,

You could use the pandas fillna method (https://pandas.pydata.org/pandas-docs/stable/generated/pandas.DataFrame.fillna.html) to replace the nan values with zero (or some other appropriate value).

-Jon