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

Instruction

Let's examine the price column again. It contains both the price and the currency, separated by an underscore. We need to fix this.

Exercise

Separate the price columns into the value and currency columns. Assign the result to the orders variable.

Stuck? Here's a hint!

Here's a piece of code to help you get started:

orders <- separate(orders, column_name, into = c(...), sep="_")