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

Another OneR example

This example uses the much larger diabetes dataset. Since most of the variables in this dataset are numeric, OneR can bin all of them:

  1. First, read the Spark diabetes table using SQL, which has already been registered in a previous chapter.
  2. Collect a 15% random sample of the data and assign it to an R (not Spark!) dataframe named "local".
  3. Bin all of the available variables based upon their ability to predict the outcome and assign it to an R dataframe named "data":
        library(OneR)         df = sql("SELECT outcome, age, mass, triceps, pregnant,        glucose, pressure, insulin, pedigree         FROM global_temp.df_view")         local = collect(sample(df, F,.15))         data <- optbin(local,outcome~.)         summary(data) 
  1. Run the OneR model using all of ...
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