Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
R for Data Science Cookbook (n)

You're reading from  R for Data Science Cookbook (n)

Product type Book
Published in Jul 2016
Publisher
ISBN-13 9781784390815
Pages 452 pages
Edition 1st Edition
Languages
Author (1):
Yu-Wei, Chiu (David Chiu) Yu-Wei, Chiu (David Chiu)
Profile icon Yu-Wei, Chiu (David Chiu)

Table of Contents (19) Chapters

R for Data Science Cookbook
Credits
About the Author
About the Reviewer
www.PacktPub.com
Preface
Functions in R Data Extracting, Transforming, and Loading Data Preprocessing and Preparation Data Manipulation Visualizing Data with ggplot2 Making Interactive Reports Simulation from Probability Distributions Statistical Inference in R Rule and Pattern Mining with R Time Series Mining with R Supervised Machine Learning Unsupervised Machine Learning Index

Selecting the best-fitted regression model with stepwise regression


In order to find the best-fitted regression model, one can perform stepwise regression to step-wisely add or remove a term from a fitted model, and finally output a model with the least AIC. In the following recipe, we demonstrate how to perform stepwise regression with the step function.

Getting ready

You need to have completed the previous recipe by fitting house rental data into a multiple regression model, fit.

How to do it…

Perform the following steps to search for the best-fitted regression model with the step function:

  1. First, you can use step to select the optimum model with backward elimination:

    > step(fit, direction="backward")
    Start:  AIC=12753.77
    Price ~ Sqft + Floor + TotalFloor + Bedroom + Living.Room + Bathroom
    
                  Df  Sum of Sq        RSS   AIC
    - TotalFloor   1 1.8081e+08 2.4428e+11 12752
    <none>                      2.4410e+11 12754
    - Bathroom     1 8.7580e+08 2.4497e+11 12754
    - Living.Room...
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}