October 2017
Beginner to intermediate
236 pages
7h 38m
English
To implement this recipe, you are required to install the RevoScaleR library.
The datasets (the CSV input files) used in this recipe are downloaded from the website of the Bureau of Transportation Statistics, USA (http://www.transtats.bts.gov). There are in total 12 CSV files for 12 months and they contains 61 variables. Your task is to import the CSV file and create an XDF file for processing.
To install RevoScaleR, you can run the following code:
install.packages("RevoScaleR", dependencies = T)
Note that to install the RevoScaleR library, you should have Microsoft R Client on your computer. Refer to the Installing and configuring R tools for Visual Studio in Windows recipe from Chapter 1, Installing and Configuring R and ...