Skip to Content
Practical Predictive Analytics
book

Practical Predictive Analytics

by Ralph Winters
June 2017
Beginner to intermediate
576 pages
15h 22m
English
Packt Publishing
Content preview from Practical Predictive Analytics

An example – airquality

In this example, we will use the regsubsets() function contained within the leaps package to determine which variables are important for predicting temperature:

install.packages("leaps") library(leaps) data(airquality) str(airquality)  

In the following regsubsets() function call, we specify that we want the best model for each combination of one, two, and three variables. By default, the function will compute the best model for all variables in the model. In the function call, I illustrate specifying a max value, since I want to be able to stop the algorithm after a certain number of variables has been reached. This becomes important when you use data that has a large number of variables, and you do not want to tie ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Data Superstream: Analytics Engineering

Data Superstream: Analytics Engineering

Alistair Croll, Anna Filippova, Emilie Schario, Lewis Davies, Jacob Frackson, Benn Stancil, Nick Acosta, Elizabeth Caley
R: Predictive Analysis

R: Predictive Analysis

Tony Fischetti, Eric Mayor, Rui Miguel Forte
Python: Advanced Predictive Analytics

Python: Advanced Predictive Analytics

Ashish Kumar, Joseph Babcock

Publisher Resources

ISBN: 9781785886188Supplemental Content