We can read from a text file:
dt <- fread("my_file.csv")
Unlike read.csv, fread will read strings as strings, not as factors by default.
read.csv
fread
See the [topic on fread][need_a_link] for more examples.