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

Instruction

Hmm, it appears we did something wrong. We have only one column! The commissioner forgot to tell us that the CSV dataset uses a forward slash, /, as its delimiter. We need to fix our code.

Exercise

Load the file data/personal_info.csv into memory, and assign it to the personal_info variable. Note: use / as the delimiter.

Stuck? Here's a hint!

Use the read_delim() function and its delim argument, like so:

personal_info <- read_delim("data/personal_info.csv", delim = "/")