Deals Of The Week - hours only!Up to 80% off on all courses and bundles.-Close
Final Quiz
2. Exercise 2

Instruction

This is the time to get rid of missing values. We have some missing product names, represented as empty strings (""). Let's get rid of those.

Exercise

Recode missing values from the product_name column. Instead of blanks, the managers want to see NAs.

Stuck? Here's a hint!

Here's a piece of code to help you get started, just write a correct condition:

orders$product_name[...] <- NA