Handling missing values in R

Author

Dr. Joscelin Rocha-Hidalgo

Published

June 6, 2021

Buy me a coffeeBuy me a coffee


Excerpt from blog: Handling missing values in R, one of the common tasks in data analysis is handling missing values. In R, missing values are often represented by the symbol NA (not available) or some other value that represents missing values (i.e. 99). Impossible values (e.g., dividing by zero) are represented by the symbol NaN (not a number)

  1. Link to blog here: https://www.r-bloggers.com/2021/04/handling-missing-values-in-r/

Heatmap showing mileage states for different vehicle types, with vehicle types labeled on the top and state categories on the right. Blue cells indicate zero count, and pink cells indicate non-zero counts, forming a diagonal pattern from bottom-left to top-right.

Back to top