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

Instruction

Ah, this data is in an unexpected format; the fields are separated by /. Let's fix this problem.

Exercise

Using read_delim(), read the data from the Hillsdale Clinic's CSV (data/hospital.csv) into memory. Use the option delim = "/". Assign it to the patients variable, and check the first few rows using head().

Stuck? Here's a hint!

Type:

patients <- read_delim("data/hospital.csv", delim = "/")
head(patients)