But what if we sometimes forget a value? How would we write down a missing value?

> bbq_cost <- c(200,190,530,NA)> bbq_cost <- c(200,190,530,0)

Exactly! Rather than using 0, we use NA to write down values we do not know. NA's can give us valuable insight about our data.

Maybe we write it down as NA?