YouTube R Programming Intro: Load flat/CSV/excel file with built-in read.table function or readxl (intro-07)

Nicole Seaman

Director of CFA & FRM Operations
Staff member
Subscriber
read.table() is the core function for loading files external file into R dataframes; it is part of the utils package which is automatically loaded when you start R. Aside from the header argument, the sep and quote arguments define the field separators. The read.csv() function is a wrapper function around read.table specifically for comma-separated values: it simply assigns sep = "," and quote = "\"". The read.delim() function is a also a wrapper around read.table: it assigns sep = "\t", quote = "\"", where \t is a special character representing a TAB.


YT sub small.png
 
Top