Book Image

Mastering Machine Learning with R - Third Edition

By : Cory Lesmeister
Book Image

Mastering Machine Learning with R - Third Edition

By: Cory Lesmeister

Overview of this book

Given the growing popularity of the R-zerocost statistical programming environment, there has never been a better time to start applying ML to your data. This book will teach you advanced techniques in ML ,using? the latest code in R 3.5. You will delve into various complex features of supervised learning, unsupervised learning, and reinforcement learning algorithms to design efficient and powerful ML models. This newly updated edition is packed with fresh examples covering a range of tasks from different domains. Mastering Machine Learning with R starts by showing you how to quickly manipulate data and prepare it for analysis. You will explore simple and complex models and understand how to compare them. You’ll also learn to use the latest library support, such as TensorFlow and Keras-R, for performing advanced computations. Additionally, you’ll explore complex topics, such as natural language processing (NLP), time series analysis, and clustering, which will further refine your skills in developing applications. Each chapter will help you implement advanced ML algorithms using real-world examples. You’ll even be introduced to reinforcement learning, along with its various use cases and models. In the concluding chapters, you’ll get a glimpse into how some of these blackbox models can be diagnosed and understood. By the end of this book, you’ll be equipped with the skills to deploy ML techniques in your own projects or at work.
Table of Contents (16 chapters)

Data understanding

The dataset for analysis here is DNA pulled from mlbench. You don't have to install the package as I've put it in a CSV file and placed it on GitHub: https://github.com/datameister66/MMLR3rd/blob/master/dna.csv.

Install the packages as needed and load the data:

> library(magrittr)

> install.packages("earth")

> install.packages("glmnet")

> install.packages("mlr")

> install.packages("randomForest")

> install.packages("tidyverse")

dna <- read.csv("dna.csv")

The data consists of 3,181 observations, 180 input features coded as binary indicators, and the Class response. The response is a factor with three labels indicating a DNA type either ei, ie, or neither—coded as n. The following is a table of the target labels:

> table(dna$Class)

ei ie n
767 765 1654

This data...