October 2017
Beginner to intermediate
236 pages
7h 38m
English
In data science application development, such as credit card fraud detection, airline delay prediction, sentiment analysis from a huge corpus of text, and so on, we are required to store, process, and analyze a dataset that might not fit into computer memory. Moreover, in some situations, the dataset might not be that big but the complexity of the algorithm forces us to use huge memory. In these types of situations where the dataset is way too big, or the algorithm is too complex, you are required to use parallel processing to achieve the task. In R, the data frame is the most convenient and popular structure to store, process, and analyze a dataset, but for a larger data context, the data frame is not fast enough. ...