October 2017
Beginner to intermediate
236 pages
7h 38m
English
Importing plain text data from a .txt file is rather easy. It is like importing data from a CSV file. The only difference is that the resultant object will not be a data frame, rather it will be a vector of characters. Here is the single line of code to import text data from a .txt file:
absText <- readLines("deepLearning.txt")