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

Installing GraphFrames


Under the hood of GraphFrames are two Spark DataFrames: one for the vertices and other one for the edges. GraphFrames might be thought of as the next generation of Spark's GraphX library, with some major improvements over the latter:

  • GraphFrames leverages the performance optimizations and simplicity of the DataFrame API.
  • By using the DataFrame API, GraphFrames can be interacted with through Python, Java, and Scala APIs. In contrast, GraphX was only available through the Scala interface.

You can find the latest information on GraphFrames within the GraphFrames overview at https://graphframes.github.io/

Getting ready

We require a working installation of Spark. This means that you would have followed the steps outlined in Chapter 1, Installing and Configuring Spark. As a reminder, to start the PySpark shell for your local Spark cluster, you can run the following command:

./bin/pyspark --master local[n]

Where n is the number of cores. 

How to do it...

If you are running your...

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