Search icon CANCEL
Subscription
0
Cart icon
Cart
Close icon
You have no products in your basket yet
Save more on your purchases!
Savings automatically calculated. No voucher code required
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
PySpark Cookbook

You're reading from  PySpark Cookbook

Product type Book
Published in Jun 2018
Publisher Packt
ISBN-13 9781788835367
Pages 330 pages
Edition 1st Edition
Languages
Authors (2):
Denny Lee Denny Lee
Profile icon Denny Lee
Tomasz Drabas Tomasz Drabas
Profile icon Tomasz Drabas
View More author details
Toc

Table of Contents (13) Chapters close

Title Page
Packt Upsell
Contributors
Preface
1. Installing and Configuring Spark 2. Abstracting Data with RDDs 3. Abstracting Data with DataFrames 4. Preparing Data for Modeling 5. Machine Learning with MLlib 6. Machine Learning with the ML Module 7. Structured Streaming with PySpark 8. GraphFrames – Graph Theory with PySpark Index

Creating an RDD for training


Before we can train an ML model, we need to create an RDD where each element is a labeled point. In this recipe, we will use the final_data RDD we created in the previous recipe to prepare our RDD for training.

Getting ready

To execute this recipe, you need to have a working Spark environment. You would have already gone through the previous recipe when we standardized the encoded census data.

No other prerequisites are required.

How to do it...

Many of the MLlib models require an RDD of labeled points to train. The next code snippets will create such an RDD for us to build classification and regression model.

Classification

Here's the snippet to create the classification RDD of labeled points that we will be using to predict whether someone is making more than $50,000:

final_data_income = (
    final_data
    .map(lambda row: reg.LabeledPoint(
        row[0]
        , row[1:]
        )
)

Regression

Here's the snippet to create the regression RDD of labeled points that...

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