Search icon
Subscription
0
Cart icon
Close icon
You have no products in your basket yet
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
R Data Science Essentials

You're reading from  R Data Science Essentials

Product type Book
Published in Jan 2016
Publisher
ISBN-13 9781785286544
Pages 154 pages
Edition 1st Edition
Languages

Table of Contents (15) Chapters

R Data Science Essentials
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface
1. Getting Started with R 2. Exploratory Data Analysis 3. Pattern Discovery 4. Segmentation Using Clustering 5. Developing Regression Models 6. Time Series Forecasting 7. Recommendation Engine 8. Communicating Data Analysis Index

Ensemble models


We will build multiple algorithms and combine the results of different algorithms with different weightages. We can decide on the weightage based on a trial-and-error basis. As discussed previously, the dataset can be divided into a training set and testing set, and we can evaluate the performance with different weightages.

The other popular regression models that can be implemented are Support Vector Machine (SVM) and Random Forest. The SVM algorithm is where the model is built by constructing a hyperplane, and in random forest, we build the model by building a number of decision trees.

Replacing NA with mean or median

When there are very few records with blank or NA values, then we can also consider replacing them with the average value. This methodology may or may not help in improving the accuracy, and so, it is important to test the performance on a sample test data. This can be implemented using the following code.

It is preferred to replace the missing values with the...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}