Assigning column names
You’ve probably noticed that the hotdogs.txt file lacks column names, and R has assigned default, random names to the columns.
To make the data more understandable and easier to work with, you can assign appropriate column names while reading the file into R.
head(hotdogs)
V1 V2 V3
1 Beef 186 495
2 Beef 181 477
3 Beef 176 425
4 Beef 149 322
5 Beef 184 482
6 Beef 190 587
Deze oefening maakt deel uit van de cursus
Introduction to Importing Data in R
Oefeninstructies
- Complete the
read.delim()function call by assigning the column names to "type", "calories", and "sodium".
Praktische interactieve oefening
Probeer deze oefening eens door deze voorbeeldcode in te vullen.
# Finish the read.delim() call
hotdogs <- read.delim("hotdogs.txt", header = FALSE, col.names = ___)
# Print the first 6 rows of hotdogs
head(hotdogs)