Session Ready
Exercise

read_csv

Time to switch to .csv files, that you can import with read_csv(). This time you can't set the delim argument: readr handles that for you.

Instead of a .txt, the potatoes data comes as a .csv file this time. It uses commas to delimit fields in a record, but does not contain the column names in the first row anymore. The file potatoes.csv is available in your workspace. There's a vector properties that you can use to specify the column names.

Instructions
100 XP

Import "potatoes.csv" using read_csv(). Use properties to set the col_names argument inside read_csv(). Name the resulting data frame potatoes.