Book Image

Applied Supervised Learning with R

By : Karthik Ramasubramanian, Jojo Moolayil
Book Image

Applied Supervised Learning with R

By: Karthik Ramasubramanian, Jojo Moolayil

Overview of this book

R provides excellent visualization features that are essential for exploring data before using it in automated learning. Applied Supervised Learning with R helps you cover the complete process of employing R to develop applications using supervised machine learning algorithms for your business needs. The book starts by helping you develop your analytical thinking to create a problem statement using business inputs and domain research. You will then learn different evaluation metrics that compare various algorithms, and later progress to using these metrics to select the best algorithm for your problem. After finalizing the algorithm you want to use, you will study the hyperparameter optimization technique to fine-tune your set of optimal parameters. The book demonstrates how you can add different regularization terms to avoid overfitting your model. By the end of this book, you will have gained the advanced skills you need for modeling a supervised machine learning algorithm that precisely fulfills your business needs.
Table of Contents (12 chapters)
Applied Supervised Learning with R
Preface

Introduction


In this final chapter, we will focus on working on a research-based capstone project. The ideas from all the previous chapters such as designing the problem using the SCQ framework, identifying the source of data, preprocessing the dataset, training a machine learning model, evaluating a model, applying resampling techniques, and many other concepts will be used. Additionally, this chapter will also focus on benchmarking models, designing experiments in machine learning, collaborating in open source platforms, and making a research work reproducible for the benefits of the larger community.

The abundance of online resources, computation power, and out-of-the-box toolkit solutions has made the entry barrier in becoming a machine learning professional minimum. Today, we have plenty of quickstart algorithms provided as a function in a package in programming languages such as R and Python, or even as a drag and drop in platforms such as Google Cloud AutoML or Microsoft Azure Machine...